From 710eadc986e8785a2fa66e2510644e2cc141710b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 23 Jul 2026 22:42:58 +0000 Subject: [PATCH] Bump actions/checkout from 4 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 7. - [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...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-reusable.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-reusable.yml b/.github/workflows/ci-reusable.yml index dcd11f6..b2d465a 100644 --- a/.github/workflows/ci-reusable.yml +++ b/.github/workflows/ci-reusable.yml @@ -24,7 +24,7 @@ jobs: python: ${{ steps.detect.outputs.python }} shell: ${{ steps.detect.outputs.shell }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - id: detect name: Detect stack run: | @@ -49,7 +49,7 @@ jobs: if: needs.detect.outputs.node == 'true' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: actions/setup-node@v4 with: node-version: 20 @@ -72,7 +72,7 @@ jobs: if: needs.detect.outputs.python == 'true' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: actions/setup-python@v5 with: python-version: "3.12" @@ -89,7 +89,7 @@ jobs: if: needs.detect.outputs.shell == 'true' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: shellcheck run: | find . -path ./.git -prune -o -path ./node_modules -prune -o -name '*.sh' -print0 \