From 54cb6dba6e4cbc223021b0256df8286c2748d39a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Sep 2026 12:16:23 +0000 Subject: [PATCH] chore(deps): bump actions/checkout in the github-actions group Bumps the github-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 5 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/v5...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/release.yml | 4 ++-- .github/workflows/test.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 79556dd..a6e18f6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -57,7 +57,7 @@ jobs: # Depth 1 is enough: the job commits on top of the checked out ref and # pushes one commit whose parent the remote already has. - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v7 with: token: ${{ steps.setup-git-user.outputs.token }} @@ -207,7 +207,7 @@ jobs: VERSION: ${{ needs.bump-version.outputs.version }} steps: - name: Checkout the merged bump - uses: actions/checkout@v5 + uses: actions/checkout@v7 with: ref: ${{ needs.bump-version.outputs.merge_sha }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e98b6a1..fd3961b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -32,7 +32,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v7 # The modules run inside Quarto's Lua and several call `pandoc.*`, so the # tests need the Quarto CLI rather than a standalone Lua interpreter.