From 32c9a5f04fb6c4a5371921a836c554548ff5a8ed Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 25 Jun 2026 01:53:44 +0000 Subject: [PATCH] chore: 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.yml | 2 +- .github/workflows/manual-publish.yml | 2 +- .github/workflows/release-please.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b10a2f9..1661f8c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: azure/setup-helm@dda3372f752e03dde6b3237bc9431cdc2f7a02a2 # v5.0.0 - name: Run quality control checks diff --git a/.github/workflows/manual-publish.yml b/.github/workflows/manual-publish.yml index 3f0df09..9c5cd56 100644 --- a/.github/workflows/manual-publish.yml +++ b/.github/workflows/manual-publish.yml @@ -35,7 +35,7 @@ jobs: contents: write # Needed for publish-gh-pages to upload release assets. packages: write # needed for ghcr access steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: ref: ${{ inputs.tag }} diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index 942706d..2951996 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -21,7 +21,7 @@ jobs: skip-github-pull-request: true # Need the repository content to be able to create and push a tag. - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 if: ${{ steps.release.outputs.release_created == 'true' }} - name: Create release tag @@ -55,7 +55,7 @@ jobs: contents: write # Needed for publish-gh-pages to upload release assets. packages: write # needed for ghcr access steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: ref: ${{ needs.release-please.outputs.tag_name }} fetch-depth: 0 # Full history is required for proper changelog generation