From c0190f86e77714ec93edee88a4b108226622fec0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 01:12:11 +0000 Subject: [PATCH] Bump actions/checkout from 4 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 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/v4...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] --- .github/workflows/automatic-release.yaml | 2 +- .github/workflows/release.yaml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/automatic-release.yaml b/.github/workflows/automatic-release.yaml index bbee0c1..24d8705 100644 --- a/.github/workflows/automatic-release.yaml +++ b/.github/workflows/automatic-release.yaml @@ -22,7 +22,7 @@ jobs: outputs: labels: ${{ steps.match-label.outputs.match }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - id: match-label shell: bash run: | diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a474d1b..19d1e97 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -29,7 +29,7 @@ jobs: packages: write steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 # Set up Docker Buildx - name: Set up Docker Buildx @@ -96,7 +96,7 @@ jobs: needs: manifest runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: marvinpinto/action-automatic-releases@latest with: @@ -112,7 +112,7 @@ jobs: needs: release runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Create release branch run: git checkout -b release/${{ inputs.version }}