From c5022c45014451f8e0babc247f112e4d9af3aeec Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 02:27:34 +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/docs.yml | 2 +- .github/workflows/release-action.yml | 2 +- .github/workflows/release-check.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/version-check.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 28dad19..a9db04e 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -33,7 +33,7 @@ jobs: private-key: ${{ secrets.BOT_PRIVATE_KEY }} - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: token: ${{ steps.bot.outputs.token }} diff --git a/.github/workflows/release-action.yml b/.github/workflows/release-action.yml index 77ec3ca..bc20cae 100644 --- a/.github/workflows/release-action.yml +++ b/.github/workflows/release-action.yml @@ -65,7 +65,7 @@ jobs: git config --global user.email "$USER_EMAIL" - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: "refs/heads/${{ inputs.branch }}" token: ${{ steps.bot.outputs.token }} diff --git a/.github/workflows/release-check.yml b/.github/workflows/release-check.yml index 9e93330..5e60127 100644 --- a/.github/workflows/release-check.yml +++ b/.github/workflows/release-check.yml @@ -28,7 +28,7 @@ jobs: run: echo "$GITHUB_CONTEXT" - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: # Required to deduce version from git tags fetch-depth: 0 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 04eddfe..b2152ed 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -110,7 +110,7 @@ jobs: git config --global user.email "$USER_EMAIL" - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: ref: "refs/heads/${{ inputs.branch }}" token: ${{ steps.bot.outputs.token }} diff --git a/.github/workflows/version-check.yml b/.github/workflows/version-check.yml index fcb32e1..ea7f851 100644 --- a/.github/workflows/version-check.yml +++ b/.github/workflows/version-check.yml @@ -58,7 +58,7 @@ jobs: run: echo "$GITHUB_CONTEXT" - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 if: steps.skipper.outputs.skip != 'true' with: token: ${{ secrets.GITHUB_TOKEN }}