From 2cd6f47808a650b2206a41f63597d017ef5546b1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Mar 2022 18:16:01 +0000 Subject: [PATCH] Bump actions/checkout from 2.4.0 to 3 Bumps [actions/checkout](https://github.com/actions/checkout) from 2.4.0 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2.4.0...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/builder.yaml | 4 ++-- .github/workflows/calibreapp-image-actions.yml | 2 +- .github/workflows/check-pr.yaml | 10 +++++----- .github/workflows/lint-checks.yaml | 6 +++--- .github/workflows/linter-on-push.yml | 2 +- .github/workflows/linter-weekly.yml | 4 ++-- 6 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/builder.yaml b/.github/workflows/builder.yaml index 3b4ce81b1..15de23d19 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 2501c5f08..2439deb2c 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