Skip to content

Bump hassio-addons/debian-base from 7.3.0 to 7.3.1 in /asterisk #955

Bump hassio-addons/debian-base from 7.3.0 to 7.3.1 in /asterisk

Bump hassio-addons/debian-base from 7.3.0 to 7.3.1 in /asterisk #955

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
find:
name: Find add-ons
runs-on: ubuntu-latest
outputs:
addons: ${{ steps.addons.outputs.addons_list }}
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@v4
- name: 🔍 Find add-on directories
id: addons
uses: home-assistant/actions/helpers/find-addons@master
lint:
name: Lint add-on ${{ matrix.path }}
runs-on: ubuntu-latest
needs: find
strategy:
matrix:
path: ${{ fromJson(needs.find.outputs.addons) }}
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@v4
- name: 🚀 Run Home Assistant Add-on Lint
uses: frenck/action-addon-linter@v2.15.0
with:
path: "./${{ matrix.path }}"
- name: 🚀 Run Hadolint
uses: hadolint/hadolint-action@v3.1.0
with:
dockerfile: "./${{ matrix.path }}/Dockerfile"