From 54ff2f82b748bab5e61b9020abd8549aeab86686 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 10:53:50 +0000 Subject: [PATCH] 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/backport.yml | 2 +- .github/workflows/go-lint.yml | 2 +- .github/workflows/go-test.yml | 4 ++-- .github/workflows/goreleaser-release.yml | 2 +- .github/workflows/release-check.yml | 2 +- .github/workflows/release-publish.yml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/backport.yml b/.github/workflows/backport.yml index 3fb3b1d..80336bb 100644 --- a/.github/workflows/backport.yml +++ b/.github/workflows/backport.yml @@ -52,7 +52,7 @@ jobs: exit 1 fi echo "User ${COMMENT_USER} is a member of ${ORG_TEAM}" - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Create backport pull requests uses: korthout/backport-action@v4.5.2 with: diff --git a/.github/workflows/go-lint.yml b/.github/workflows/go-lint.yml index 0e7482b..c26c7eb 100644 --- a/.github/workflows/go-lint.yml +++ b/.github/workflows/go-lint.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up Go uses: actions/setup-go@v6 with: diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml index d4eafcc..b27333f 100644 --- a/.github/workflows/go-test.yml +++ b/.github/workflows/go-test.yml @@ -23,7 +23,7 @@ jobs: if: inputs.test steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up Go uses: actions/setup-go@v6 with: @@ -40,7 +40,7 @@ jobs: if: inputs.race steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up Go uses: actions/setup-go@v6 with: diff --git a/.github/workflows/goreleaser-release.yml b/.github/workflows/goreleaser-release.yml index 0b857ca..f9fb1bb 100644 --- a/.github/workflows/goreleaser-release.yml +++ b/.github/workflows/goreleaser-release.yml @@ -72,7 +72,7 @@ jobs: runs-on: ${{ inputs.runs-on }} steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: ${{ inputs.fetch-depth }} ref: ${{ inputs.ref }} diff --git a/.github/workflows/release-check.yml b/.github/workflows/release-check.yml index eac3ace..d05d561 100644 --- a/.github/workflows/release-check.yml +++ b/.github/workflows/release-check.yml @@ -39,7 +39,7 @@ jobs: pr = open[0]; } core.setOutput('json', JSON.stringify(pr)); - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: actions/setup-go@v6 with: go-version: stable diff --git a/.github/workflows/release-publish.yml b/.github/workflows/release-publish.yml index 17e5859..49d0b22 100644 --- a/.github/workflows/release-publish.yml +++ b/.github/workflows/release-publish.yml @@ -15,7 +15,7 @@ jobs: name: Publish runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - id: version name: Determine version run: jq -r .version version.json | xargs -I{} echo "version={}" | tee -a $GITHUB_OUTPUT