diff --git a/.github/workflows/archived_lint-checks.yaml b/.github/workflows/archived_lint-checks.yaml index ff5cd5753..eef616103 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@v5 + uses: actions/checkout@v6 - name: Get changed files id: changed_files @@ -34,7 +34,7 @@ jobs: container: koalaman/shellcheck-alpine:latest steps: - name: ↩️ Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Get changed files id: changed_files @@ -54,7 +54,7 @@ jobs: runs-on: ubuntu-latest steps: - name: ↩️ Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 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 605bf6e7b..74db646e1 100644 --- a/.github/workflows/daily_README.yaml +++ b/.github/workflows/daily_README.yaml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Install jq + yq (v4) run: | diff --git a/.github/workflows/generate_stargazer_map.yml b/.github/workflows/generate_stargazer_map.yml index a7898b362..88166ec31 100644 --- a/.github/workflows/generate_stargazer_map.yml +++ b/.github/workflows/generate_stargazer_map.yml @@ -9,7 +9,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6 diff --git a/.github/workflows/helper_stats_graphs.yaml b/.github/workflows/helper_stats_graphs.yaml index b9b6f2c5f..53539a4e7 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@v5 + uses: actions/checkout@v6 - name: Install apps run: | git pull --rebase origin master diff --git a/.github/workflows/on_issues.yml b/.github/workflows/on_issues.yml index a5eb36017..59e0449b3 100644 --- a/.github/workflows/on_issues.yml +++ b/.github/workflows/on_issues.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Assign issues run: | # Init diff --git a/.github/workflows/onpr_check-pr.yaml b/.github/workflows/onpr_check-pr.yaml index 5487a9930..903b6b77d 100644 --- a/.github/workflows/onpr_check-pr.yaml +++ b/.github/workflows/onpr_check-pr.yaml @@ -18,7 +18,7 @@ jobs: changedChangelogFiles: ${{ steps.changed-files.outputs.changelogs_files }} steps: - name: Checkout repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Find changed addon directories id: find_addons run: | @@ -72,7 +72,7 @@ jobs: addon: ${{ fromJSON(needs.check-addon-changes.outputs.changedAddons) }} steps: - name: ↩️ Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: 🔎 Check if a label for the addon exists shell: bash @@ -94,7 +94,7 @@ jobs: addon: ${{ fromJSON(needs.check-addon-changes.outputs.changedAddons) }} steps: - name: ↩️ Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: 🔎 Run Home Assistant Add-on Lint uses: frenck/action-addon-linter@v2 @@ -112,7 +112,7 @@ jobs: addon: ${{ fromJSON(needs.check-addon-changes.outputs.changedAddons) }} steps: - name: ↩️ Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: ℹ️ Gather addon info id: information diff --git a/.github/workflows/onpush_builder.yaml b/.github/workflows/onpush_builder.yaml index 16009aad3..41c27c467 100644 --- a/.github/workflows/onpush_builder.yaml +++ b/.github/workflows/onpush_builder.yaml @@ -23,7 +23,7 @@ jobs: changedAddons: ${{ steps.find_addons.outputs.changed_addons }} steps: - name: Checkout repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Find changed addon directories id: find_addons run: | @@ -44,7 +44,7 @@ jobs: matrix: addon: ${{ fromJSON(needs.detect-changed-addons.outputs.changedAddons) }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 # ──────────────────────────────────────────────────────────────── # 1. Replace non-printable Unicode spaces ␣ and # convert Windows line endings (CRLF) → Unix (LF) @@ -99,7 +99,7 @@ jobs: matrix: addon: ${{ fromJSON(needs.detect-changed-addons.outputs.changedAddons) }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Run Home Assistant Add-on Lint uses: frenck/action-addon-linter@v2 with: @@ -117,7 +117,7 @@ jobs: addon: ${{ fromJSON(needs.detect-changed-addons.outputs.changedAddons) }} arch: ["aarch64", "amd64", "armv7"] steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Resolve Symlinks (in repo) run: | find . -type l | while read -r link; do @@ -194,7 +194,7 @@ jobs: matrix: addon: ${{ fromJSON(needs.detect-changed-addons.outputs.changedAddons) }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 1 - name: Update changelog for minor versions @@ -239,7 +239,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 diff --git a/.github/workflows/onpush_superlinter.yml b/.github/workflows/onpush_superlinter.yml index 6d5090a9c..8b5b8d06c 100644 --- a/.github/workflows/onpush_superlinter.yml +++ b/.github/workflows/onpush_superlinter.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 diff --git a/.github/workflows/weekly-supelinter.yaml b/.github/workflows/weekly-supelinter.yaml index 6c895f216..f094453d5 100644 --- a/.github/workflows/weekly-supelinter.yaml +++ b/.github/workflows/weekly-supelinter.yaml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 diff --git a/.github/workflows/weekly_crlftolf.yaml b/.github/workflows/weekly_crlftolf.yaml index 612f6f251..2ab8170ee 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@v5 + uses: actions/checkout@v6 - 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@v5 # Use the checkout action + uses: actions/checkout@v6 # 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 e9896494c..75ba58f0d 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@v5 + uses: actions/checkout@v6 - name: Compress Images id: calibre diff --git a/.github/workflows/weekly_stats.yaml b/.github/workflows/weekly_stats.yaml index 1001d1140..8fe492d57 100644 --- a/.github/workflows/weekly_stats.yaml +++ b/.github/workflows/weekly_stats.yaml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repo - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Create stats run: | echo "Starting"