From 9c0bc63086fd390ba6525e6bf4ec176cd676daa1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 23 Nov 2025 18:07:49 +0100 Subject: [PATCH] Chore(deps): Bump actions/checkout from 5 to 6 (#2659) Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/auto-merge-dependency-updates.yml | 2 +- .github/workflows/auto-release.yml | 2 +- .github/workflows/backport-to-stable.yml | 2 +- .github/workflows/build-base-image.yml | 2 +- .github/workflows/release.yml | 8 ++++---- .github/workflows/test.yml | 4 ++-- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/auto-merge-dependency-updates.yml b/.github/workflows/auto-merge-dependency-updates.yml index c1a19910..1b0805b7 100644 --- a/.github/workflows/auto-merge-dependency-updates.yml +++ b/.github/workflows/auto-merge-dependency-updates.yml @@ -64,7 +64,7 @@ jobs: # IMPORTANT: Checkout the PR's head to validate file changes # This is required for the git commands in security check 5 - name: Checkout PR branch - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.sha }} fetch-depth: 2 diff --git a/.github/workflows/auto-release.yml b/.github/workflows/auto-release.yml index f60b7d4f..3c204bb1 100644 --- a/.github/workflows/auto-release.yml +++ b/.github/workflows/auto-release.yml @@ -46,7 +46,7 @@ jobs: echo "Release channel: $CHANNEL" - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 # Fetch all history for proper comparison diff --git a/.github/workflows/backport-to-stable.yml b/.github/workflows/backport-to-stable.yml index df3873cc..77a25420 100644 --- a/.github/workflows/backport-to-stable.yml +++ b/.github/workflows/backport-to-stable.yml @@ -15,7 +15,7 @@ jobs: if: github.event.commits[0].distinct == true steps: - name: Checkout repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 # Needed for full git history diff --git a/.github/workflows/build-base-image.yml b/.github/workflows/build-base-image.yml index 9e86cd58..84f8f75b 100644 --- a/.github/workflows/build-base-image.yml +++ b/.github/workflows/build-base-image.yml @@ -17,7 +17,7 @@ jobs: permissions: packages: write steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Download Widevine CDM client files from private repository shell: bash env: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 14315ba7..760da453 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -80,7 +80,7 @@ jobs: base_image_version: ${{ steps.validate.outputs.base_image_version }} branch: ${{ needs.preflight-checks.outputs.branch }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: ref: ${{ needs.preflight-checks.outputs.branch }} fetch-depth: 0 @@ -176,7 +176,7 @@ jobs: release_id: ${{ steps.create_release.outputs.id }} upload_url: ${{ steps.create_release.outputs.upload_url }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: ref: ${{ needs.validate-and-build.outputs.branch }} fetch-depth: 0 @@ -301,7 +301,7 @@ jobs: - validate-and-build - create-release steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: ref: ${{ needs.validate-and-build.outputs.branch }} @@ -399,7 +399,7 @@ jobs: esac - name: Checkout add-on repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: repository: music-assistant/home-assistant-addon token: ${{ secrets.PRIVILEGED_GITHUB_TOKEN }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6aa49545..e0db7165 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Check out code from GitHub - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up Python uses: actions/setup-python@v6.0.0 with: @@ -46,7 +46,7 @@ jobs: steps: - name: Check out code from GitHub - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v6.0.0 with: -- 2.34.1