From 4b94d79d24bbd3315fbaef189e3317c571f9849f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 3 Sep 2026 20:10:15 +0000 Subject: [PATCH] chore: Bump the actions group with 2 updates Bumps the actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/github-script](https://github.com/actions/github-script). Updates `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) Updates `actions/github-script` from 7 to 9 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7...v9) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/github-script dependency-version: '9' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- .github/workflows/refresh.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/scan.yml | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1606f361..5076e1e6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: contents: read steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 # full history for hatch-vcs diff --git a/.github/workflows/refresh.yml b/.github/workflows/refresh.yml index 2fac509c..b40fe1ad 100644 --- a/.github/workflows/refresh.yml +++ b/.github/workflows/refresh.yml @@ -37,7 +37,7 @@ jobs: # The tag, not main: `:latest` must keep pointing at released code. Only # the OS packages underneath it are allowed to move. - name: Checkout the release tag - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ steps.release.outputs.tag }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 04340edc..c9441767 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: id-token: write # for cosign keyless signing via OIDC steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 # full history for hatch-vcs diff --git a/.github/workflows/scan.yml b/.github/workflows/scan.yml index 63a835f5..790c6df4 100644 --- a/.github/workflows/scan.yml +++ b/.github/workflows/scan.yml @@ -15,7 +15,7 @@ jobs: issues: write # to open an issue on new findings steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Run Trivy on :latest id: trivy @@ -44,7 +44,7 @@ jobs: - name: Open issue on findings if: steps.findings.outputs.found == 'true' - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | const fs = require('fs');