From 00782cf9ba211916acac5a1b9554fb5f13179c24 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Aug 2026 22:25:50 +0000 Subject: [PATCH] Bump actions/checkout from 7.0.0 to 7.0.1 Bumps [actions/checkout](https://github.com/actions/checkout) from 7.0.0 to 7.0.1. - [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/v7.0.0...v7.0.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy-docs.yaml | 2 +- .github/workflows/excel_inbox.yaml | 10 +++++----- .github/workflows/main.yaml | 2 +- .github/workflows/test_pages_build.yaml | 2 +- .github/workflows/update_excel.yaml | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/deploy-docs.yaml b/.github/workflows/deploy-docs.yaml index e9934218f..fff9de999 100644 --- a/.github/workflows/deploy-docs.yaml +++ b/.github/workflows/deploy-docs.yaml @@ -24,7 +24,7 @@ jobs: steps: # https://github.com/actions/checkout - name: Checkout - uses: actions/checkout@v7.0.0 + uses: actions/checkout@v7.0.1 with: fetch-depth: 0 # otherwise, you will fail to push refs to dest repo diff --git a/.github/workflows/excel_inbox.yaml b/.github/workflows/excel_inbox.yaml index 3464351be..ecaa18632 100644 --- a/.github/workflows/excel_inbox.yaml +++ b/.github/workflows/excel_inbox.yaml @@ -72,7 +72,7 @@ jobs: # ── Checkout ───────────────────────────────────────────────────────────── - name: Check out PR branch (fork-safe) - uses: actions/checkout@v7.0.0 + uses: actions/checkout@v7.0.1 with: # Contributor's branch — only read here; write-back is in the finish job. repository: ${{ github.event.pull_request.head.repo.full_name }} @@ -88,7 +88,7 @@ jobs: - name: Check out main branch into _main_branch/ # Always run OUR scripts from main — never from the PR. # This is the key security boundary for pull_request_target. - uses: actions/checkout@v7.0.0 + uses: actions/checkout@v7.0.1 with: ref: main path: _main_branch @@ -206,7 +206,7 @@ jobs: - name: Check out main branch # Run the test suite against the main-branch project with the modified # schema injected from the artifact. - uses: actions/checkout@v7.0.0 + uses: actions/checkout@v7.0.1 with: ref: main fetch-depth: 1 @@ -267,7 +267,7 @@ jobs: # ── Checkout ───────────────────────────────────────────────────────────── - name: Check out PR branch (fork-safe) - uses: actions/checkout@v7.0.0 + uses: actions/checkout@v7.0.1 with: repository: ${{ github.event.pull_request.head.repo.full_name }} ref: ${{ github.event.pull_request.head.ref }} @@ -277,7 +277,7 @@ jobs: allow-unsafe-pr-checkout: true - name: Check out main branch into _main_branch/ - uses: actions/checkout@v7.0.0 + uses: actions/checkout@v7.0.1 with: ref: main path: _main_branch diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 04749a48e..d3b2f132a 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -36,7 +36,7 @@ jobs: # https://github.com/actions/checkout - name: Check out repository - uses: actions/checkout@v7.0.0 + uses: actions/checkout@v7.0.1 with: persist-credentials: false diff --git a/.github/workflows/test_pages_build.yaml b/.github/workflows/test_pages_build.yaml index 9f2f89b70..906598112 100644 --- a/.github/workflows/test_pages_build.yaml +++ b/.github/workflows/test_pages_build.yaml @@ -28,7 +28,7 @@ jobs: steps: # https://github.com/actions/checkout - name: Checkout - uses: actions/checkout@v7.0.0 + uses: actions/checkout@v7.0.1 with: fetch-depth: 0 diff --git a/.github/workflows/update_excel.yaml b/.github/workflows/update_excel.yaml index 4f3e8f4d1..b2b292abc 100644 --- a/.github/workflows/update_excel.yaml +++ b/.github/workflows/update_excel.yaml @@ -38,7 +38,7 @@ jobs: steps: - name: Check out repository - uses: actions/checkout@v7.0.0 + uses: actions/checkout@v7.0.1 with: # Use a token with write access so the commit push works. # GITHUB_TOKEN is sufficient for same-repo pushes.