From d651cfdf0d42bce75763953f10ed1903a100e4c0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 01:34:20 +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/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..3714dc2 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@v5 - id: match-label shell: bash run: | diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a474d1b..fc01ead 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@v5 # 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@v5 - 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@v5 - name: Create release branch run: git checkout -b release/${{ inputs.version }}