diff --git a/.github/workflows/builder.yaml b/.github/workflows/builder.yaml index 8b9e2e2dc..1b4d5cffa 100644 --- a/.github/workflows/builder.yaml +++ b/.github/workflows/builder.yaml @@ -19,7 +19,7 @@ jobs: changedAddons: ${{ steps.filter.outputs.changes }} steps: - name: ↩️ Checkout - uses: actions/checkout@v2.4.0 + uses: actions/checkout@v3 - name: 📂 Detect chanced files uses: dorny/paths-filter@v2 @@ -39,7 +39,7 @@ jobs: steps: - name: Check out repository - uses: actions/checkout@v2.4.0 + uses: actions/checkout@v3 - name: Get information id: info diff --git a/.github/workflows/calibreapp-image-actions.yml b/.github/workflows/calibreapp-image-actions.yml index c5a9293ac..d06337898 100644 --- a/.github/workflows/calibreapp-image-actions.yml +++ b/.github/workflows/calibreapp-image-actions.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Compress Images id: calibre uses: calibreapp/image-actions@main diff --git a/.github/workflows/check-pr.yaml b/.github/workflows/check-pr.yaml index 652b2e95c..f0265b9d9 100644 --- a/.github/workflows/check-pr.yaml +++ b/.github/workflows/check-pr.yaml @@ -15,7 +15,7 @@ jobs: changedChangelogFiles: ${{ steps.changed-files.outputs.changelogs_files }} steps: - name: ↩️ Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: 📂 Detect chanced addons uses: dorny/paths-filter@v2 @@ -60,7 +60,7 @@ jobs: addon: ${{ fromJSON(needs.check-addon-changes.outputs.changedAddons) }} steps: - name: ↩️ Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: 🔎 Check if versions of CHANGELOG.md and config.json match shell: bash @@ -82,7 +82,7 @@ jobs: addon: ${{ fromJSON(needs.check-addon-changes.outputs.changedAddons) }} steps: - name: ↩️ Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: 🔎 Check if a label for the addon exists shell: bash @@ -103,7 +103,7 @@ jobs: addon: ${{ fromJSON(needs.check-addon-changes.outputs.changedAddons) }} steps: - name: ↩️ Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: 🔎 Run Home Assistant Add-on Lint uses: frenck/action-addon-linter@v2 @@ -121,7 +121,7 @@ jobs: addon: ${{ fromJSON(needs.check-addon-changes.outputs.changedAddons) }} steps: - name: ↩️ Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: ℹ️ Gather addon info id: information diff --git a/.github/workflows/lint-checks.yaml b/.github/workflows/lint-checks.yaml index 3453eebe0..09d219d2f 100644 --- a/.github/workflows/lint-checks.yaml +++ b/.github/workflows/lint-checks.yaml @@ -13,7 +13,7 @@ jobs: container: ghcr.io/hadolint/hadolint:latest-alpine steps: - name: ↩️ Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Get changed files id: changed_files @@ -34,7 +34,7 @@ jobs: container: koalaman/shellcheck-alpine:latest steps: - name: ↩️ Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Get changed files id: changed_files @@ -54,7 +54,7 @@ jobs: runs-on: ubuntu-latest steps: - name: ↩️ Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: # Full git history is needed to get a proper list of changed files within `super-linter` fetch-depth: 0 diff --git a/.github/workflows/linter-on-push.yml b/.github/workflows/linter-on-push.yml index 134f50d29..ecb1e5c3c 100644 --- a/.github/workflows/linter-on-push.yml +++ b/.github/workflows/linter-on-push.yml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: # Full git history is needed to get a proper list of changed files within `super-linter` fetch-depth: 0 diff --git a/.github/workflows/linter-weekly.yml b/.github/workflows/linter-weekly.yml index e5db260be..2547ba808 100644 --- a/.github/workflows/linter-weekly.yml +++ b/.github/workflows/linter-weekly.yml @@ -20,7 +20,7 @@ jobs: # Checkout the code base # ########################## - name: Checkout the code base - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: # Full git history is needed to get a proper list of changed files within `super-linter` fetch-depth: 0 @@ -44,7 +44,7 @@ jobs: steps: - name: Checkout repository contents - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Use action to check for CRLF endings uses: erclu/check-crlf@v1.2.0