From c69e87e1ba1cdbe2e1f38827a7662a079a4072c8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 21:27:27 +0000 Subject: [PATCH] (deps): Bump actions/checkout from 6 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 6 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/v6...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-python-zensical.yml | 2 +- .github/workflows/deploy-zensical.yml | 2 +- .github/workflows/links.yml | 2 +- .github/workflows/pre-release.yml | 2 +- .github/workflows/release-pypi.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci-python-zensical.yml b/.github/workflows/ci-python-zensical.yml index fd63bf0..0683b31 100644 --- a/.github/workflows/ci-python-zensical.yml +++ b/.github/workflows/ci-python-zensical.yml @@ -43,7 +43,7 @@ jobs: # ============================================================ - name: A1) Checkout repository code - uses: actions/checkout@v6 + uses: actions/checkout@v7 # WHY: Required so all subsequent steps can access repo files. - name: A2) Install uv (with caching) diff --git a/.github/workflows/deploy-zensical.yml b/.github/workflows/deploy-zensical.yml index 49a621f..eea6d2e 100644 --- a/.github/workflows/deploy-zensical.yml +++ b/.github/workflows/deploy-zensical.yml @@ -50,7 +50,7 @@ jobs: # ============================================================ - name: A1) Checkout repository code - uses: actions/checkout@v6 + uses: actions/checkout@v7 # WHY: Required so all subsequent steps can access repo files. - name: A2) Configure GitHub Pages diff --git a/.github/workflows/links.yml b/.github/workflows/links.yml index e5966fd..ee5bd2a 100644 --- a/.github/workflows/links.yml +++ b/.github/workflows/links.yml @@ -37,7 +37,7 @@ jobs: steps: - name: 1) Checkout repository code - uses: actions/checkout@v6 + uses: actions/checkout@v7 # WHY: Required so Lychee can inspect repository files. - name: 2) Run Lychee diff --git a/.github/workflows/pre-release.yml b/.github/workflows/pre-release.yml index 96a7509..d931aa2 100644 --- a/.github/workflows/pre-release.yml +++ b/.github/workflows/pre-release.yml @@ -33,7 +33,7 @@ jobs: # === ASSEMBLE === - name: A1) Checkout repository with full history and tags - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 # WHY: hatch-vcs needs full history to derive version from tags. fetch-tags: true diff --git a/.github/workflows/release-pypi.yml b/.github/workflows/release-pypi.yml index b6175f0..d0ee97b 100644 --- a/.github/workflows/release-pypi.yml +++ b/.github/workflows/release-pypi.yml @@ -55,7 +55,7 @@ jobs: # === ASSEMBLE === - name: A1) Checkout repository with full history and tags - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 # WHY: hatch-vcs needs full history to derive version from tags. fetch-tags: true