From f1727f4eb88281836fd2b45315706ccd47a05755 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Jul 2026 20:15:24 +0000 Subject: [PATCH] chore(deps): 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/conote-ai.yml | 4 ++-- .github/workflows/conote-upstream-sync.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/conote-ai.yml b/.github/workflows/conote-ai.yml index dbfc6a3f1..15cf70d65 100644 --- a/.github/workflows/conote-ai.yml +++ b/.github/workflows/conote-ai.yml @@ -29,7 +29,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 20 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Install pnpm uses: pnpm/action-setup@v4 @@ -66,7 +66,7 @@ jobs: # value-based guard below covers the case where the secret is simply unset. if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.fork == false }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 # Secrets cannot be referenced in a job-level `if:`, so surface presence as a # step output and gate the real work on it. Empty secret => skip with a notice. diff --git a/.github/workflows/conote-upstream-sync.yml b/.github/workflows/conote-upstream-sync.yml index 713e97f11..2e7dcf908 100644 --- a/.github/workflows/conote-upstream-sync.yml +++ b/.github/workflows/conote-upstream-sync.yml @@ -36,7 +36,7 @@ jobs: # and `git rev-list main..upstream/main` have every commit to reason about. # persist-credentials (default true) leaves a token that can push the branch. - name: Checkout main (full history) - uses: actions/checkout@v4 + uses: actions/checkout@v7 with: fetch-depth: 0 ref: main