From 5a2fae2c71342676f41c7a55669cf7bcfdc4a941 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 08:01:15 +0000 Subject: [PATCH] Bump actions/checkout from 5 to 6 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] --- .github/workflows/test.yaml | 2 +- action.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 5676eb6..e21e0e2 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -25,7 +25,7 @@ jobs: git config --global core.autocrlf input fi - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - uses: ./ with: diff --git a/action.yaml b/action.yaml index 4305e9c..afd0551 100644 --- a/action.yaml +++ b/action.yaml @@ -116,7 +116,7 @@ runs: run: git config --global core.autocrlf input - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v6 if: ${{ fromJSON(inputs.checkout) }} with: # Work around the fact that in the context of a pull request github.sha @@ -138,7 +138,7 @@ runs: echo "short=${SHA:0:7}" >> $GITHUB_OUTPUT - name: Checkout build variables - uses: actions/checkout@v5 + uses: actions/checkout@v6 if: ${{ fromJSON(inputs.checkout-build-variables) }} with: repository: ${{ inputs.build-variables-repo }}