From 8d73fa522c1bb3fb857ca94373a5fdef2413ef8e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 22 Aug 2026 20:26:42 +0000 Subject: [PATCH] ci: 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.yml | 8 ++++---- .github/workflows/codeql.yml | 2 +- .github/workflows/release.yml | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ac83655..595505a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,7 +45,7 @@ jobs: run: working-directory: apps/orchestrator steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 with: # gitleaks scans the pushed commit range; a shallow clone can't walk it # (surfaces as "failed to scan Git repository: stderr is not empty"). @@ -82,7 +82,7 @@ jobs: # before anything else works. Exercise them on the OS they target. runs-on: windows-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: actions/setup-python@v7 with: python-version: "3.12" @@ -144,7 +144,7 @@ jobs: run: working-directory: apps/orchestrator steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: actions/setup-python@v7 with: python-version: "3.12" @@ -167,7 +167,7 @@ jobs: run: working-directory: apps/dashboard steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: actions/setup-node@v7 with: node-version: "20" diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index ae26653..34b02e1 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -45,7 +45,7 @@ jobs: build-mode: none steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Initialize CodeQL uses: github/codeql-action/init@v3 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ba4eeb8..7567d5d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -43,7 +43,7 @@ jobs: run: working-directory: apps/orchestrator steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: actions/setup-python@v7 with: python-version: "3.12" @@ -64,7 +64,7 @@ jobs: needs: verify runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - uses: actions/setup-python@v7 with: python-version: "3.12"