From 69512b61fb48f78096d03e1ae2f3a666433a5efd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 01:13:47 +0000 Subject: [PATCH] Bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [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/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/archived_lint-checks.yaml | 6 +++--- .github/workflows/daily_README.yaml | 2 +- .github/workflows/helper_stats_graphs.yaml | 2 +- .github/workflows/on_issues.yml | 2 +- .github/workflows/onpr_check-pr.yaml | 8 ++++---- .github/workflows/onpush_builder.yaml | 12 ++++++------ .github/workflows/onpush_superlinter.yml | 2 +- .github/workflows/weekly-supelinter.yaml | 6 +++--- .github/workflows/weekly_bashbeautify.yaml | 2 +- .github/workflows/weekly_crlftolf.yaml | 4 ++-- .github/workflows/weekly_reduceimagesize.yml | 2 +- .github/workflows/weekly_sortjson.yaml | 2 +- .github/workflows/weekly_stats.yaml | 2 +- 13 files changed, 26 insertions(+), 26 deletions(-) diff --git a/.github/workflows/archived_lint-checks.yaml b/.github/workflows/archived_lint-checks.yaml index 7836389..3767524 100644 --- a/.github/workflows/archived_lint-checks.yaml +++ b/.github/workflows/archived_lint-checks.yaml @@ -13,7 +13,7 @@ jobs: container: ghcr.io/hadolint/hadolint:latest-alpine steps: - name: ↩️ Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Get changed files id: changed_files @@ -34,7 +34,7 @@ jobs: container: koalaman/shellcheck-alpine:latest steps: - name: ↩️ Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Get changed files id: changed_files @@ -54,7 +54,7 @@ jobs: runs-on: ubuntu-latest steps: - name: ↩️ Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 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/daily_README.yaml b/.github/workflows/daily_README.yaml index cf42aa7..ab44d46 100644 --- a/.github/workflows/daily_README.yaml +++ b/.github/workflows/daily_README.yaml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Checkout Repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Create README file run: | # Init diff --git a/.github/workflows/helper_stats_graphs.yaml b/.github/workflows/helper_stats_graphs.yaml index b26cc54..b9b6f2c 100644 --- a/.github/workflows/helper_stats_graphs.yaml +++ b/.github/workflows/helper_stats_graphs.yaml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Install apps run: | git pull --rebase origin master diff --git a/.github/workflows/on_issues.yml b/.github/workflows/on_issues.yml index dff9211..52ac2f4 100644 --- a/.github/workflows/on_issues.yml +++ b/.github/workflows/on_issues.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Checkout Repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Assign issues run: | # Init diff --git a/.github/workflows/onpr_check-pr.yaml b/.github/workflows/onpr_check-pr.yaml index 74b35f6..ab6b971 100644 --- a/.github/workflows/onpr_check-pr.yaml +++ b/.github/workflows/onpr_check-pr.yaml @@ -15,7 +15,7 @@ jobs: changedChangelogFiles: ${{ steps.changed-files.outputs.changelogs_files }} steps: - name: ↩️ Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: 📂 Detect changed addons uses: dorny/paths-filter@v3 @@ -61,7 +61,7 @@ jobs: addon: ${{ fromJSON(needs.check-addon-changes.outputs.changedAddons) }} steps: - name: ↩️ Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: 🔎 Check if a label for the addon exists shell: bash @@ -82,7 +82,7 @@ jobs: addon: ${{ fromJSON(needs.check-addon-changes.outputs.changedAddons) }} steps: - name: ↩️ Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: 🔎 Run Home Assistant Add-on Lint uses: frenck/action-addon-linter@v2 @@ -100,7 +100,7 @@ jobs: addon: ${{ fromJSON(needs.check-addon-changes.outputs.changedAddons) }} steps: - name: ↩️ Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: ℹ️ Gather addon info id: information diff --git a/.github/workflows/onpush_builder.yaml b/.github/workflows/onpush_builder.yaml index 8af3f9a..8f0945c 100644 --- a/.github/workflows/onpush_builder.yaml +++ b/.github/workflows/onpush_builder.yaml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest steps: - name: ↩️ Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Update path_filters run: | # Init @@ -58,7 +58,7 @@ jobs: changedAddons: ${{ steps.filter.outputs.changes }} steps: - name: ↩️ Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: 📂 Detect changed files uses: dorny/paths-filter@v3 id: filter @@ -80,7 +80,7 @@ jobs: addon: ${{ fromJSON(needs.check-addon-changes.outputs.changedAddons) }} steps: - name: Checkout Repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Make scripts executable run: | echo "Starting" @@ -108,7 +108,7 @@ jobs: addon: ${{ fromJSON(needs.check-addon-changes.outputs.changedAddons) }} steps: - name: ↩️ Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: 🔎 Run Home Assistant Add-on Lint uses: frenck/action-addon-linter@v2 with: @@ -127,7 +127,7 @@ jobs: steps: - name: Check out repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Resolve Symlinks run: | @@ -205,7 +205,7 @@ jobs: addon: ${{ fromJSON(needs.check-addon-changes.outputs.changedAddons) }} steps: - name: Checkout Repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Update changelog for minor versions run: | echo "Starting" diff --git a/.github/workflows/onpush_superlinter.yml b/.github/workflows/onpush_superlinter.yml index 42e740b..ea2b5f4 100644 --- a/.github/workflows/onpush_superlinter.yml +++ b/.github/workflows/onpush_superlinter.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 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/weekly-supelinter.yaml b/.github/workflows/weekly-supelinter.yaml index b30b2e1..0726a32 100644 --- a/.github/workflows/weekly-supelinter.yaml +++ b/.github/workflows/weekly-supelinter.yaml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Make scripts executable run: | @@ -44,7 +44,7 @@ jobs: # Checkout the code base # ########################## - name: Checkout the code base - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: # Full git history is needed to get a proper list of changed files within `super-linter` fetch-depth: 0 @@ -69,7 +69,7 @@ jobs: steps: - name: Checkout repository contents - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Use action to check for CRLF endings uses: erclu/check-crlf@v1.2.0 diff --git a/.github/workflows/weekly_bashbeautify.yaml b/.github/workflows/weekly_bashbeautify.yaml index 5ebe7f8..d1ac25e 100644 --- a/.github/workflows/weekly_bashbeautify.yaml +++ b/.github/workflows/weekly_bashbeautify.yaml @@ -17,7 +17,7 @@ jobs: steps: - name: Checkout Git Repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set up Python Environment uses: actions/setup-python@v4 diff --git a/.github/workflows/weekly_crlftolf.yaml b/.github/workflows/weekly_crlftolf.yaml index 525433a..612f6f2 100644 --- a/.github/workflows/weekly_crlftolf.yaml +++ b/.github/workflows/weekly_crlftolf.yaml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository contents - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Use action to check for CRLF endings uses: erclu/check-crlf@v1 @@ -29,7 +29,7 @@ jobs: runs-on: ubuntu-latest # Use a Linux runner steps: - name: Checkout repository contents - uses: actions/checkout@v4 # Use the checkout action + uses: actions/checkout@v5 # Use the checkout action - name: Find files with CRLF endings uses: erclu/check-crlf@v1.2.0 # Use the check-crlf action id: check-crlf # Assign an id to this step diff --git a/.github/workflows/weekly_reduceimagesize.yml b/.github/workflows/weekly_reduceimagesize.yml index 667ee43..e989649 100644 --- a/.github/workflows/weekly_reduceimagesize.yml +++ b/.github/workflows/weekly_reduceimagesize.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Compress Images id: calibre diff --git a/.github/workflows/weekly_sortjson.yaml b/.github/workflows/weekly_sortjson.yaml index 655dd38..fd0132d 100644 --- a/.github/workflows/weekly_sortjson.yaml +++ b/.github/workflows/weekly_sortjson.yaml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Checkout Repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Run script file id: sort run: | diff --git a/.github/workflows/weekly_stats.yaml b/.github/workflows/weekly_stats.yaml index a3734c6..3681c2b 100644 --- a/.github/workflows/weekly_stats.yaml +++ b/.github/workflows/weekly_stats.yaml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Checkout Repo - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Create stats run: | echo "Starting"