From 3e356038756b19357876751136c7f3e104dbc348 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Jul 2026 10:54:15 +0000 Subject: [PATCH] Bump actions/setup-go from 6 to 7 Bumps [actions/setup-go](https://github.com/actions/setup-go) from 6 to 7. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/setup-go dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/go-lint.yml | 2 +- .github/workflows/go-test.yml | 4 ++-- .github/workflows/goreleaser-release.yml | 2 +- .github/workflows/release-check.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/go-lint.yml b/.github/workflows/go-lint.yml index c26c7eb..c4e625a 100644 --- a/.github/workflows/go-lint.yml +++ b/.github/workflows/go-lint.yml @@ -16,7 +16,7 @@ jobs: - name: Checkout code uses: actions/checkout@v7 - name: Set up Go - uses: actions/setup-go@v6 + uses: actions/setup-go@v7 with: # TODO: Automate fetch from go.mod. go-version: '${{ inputs.go-version }}' diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml index b27333f..d0156fd 100644 --- a/.github/workflows/go-test.yml +++ b/.github/workflows/go-test.yml @@ -25,7 +25,7 @@ jobs: - name: Checkout code uses: actions/checkout@v7 - name: Set up Go - uses: actions/setup-go@v6 + uses: actions/setup-go@v7 with: go-version: '${{ inputs.go-version }}' - name: Run repo-specific setup @@ -42,7 +42,7 @@ jobs: - name: Checkout code uses: actions/checkout@v7 - name: Set up Go - uses: actions/setup-go@v6 + uses: actions/setup-go@v7 with: go-version: '${{ inputs.go-version }}' - name: Run repo-specific setup diff --git a/.github/workflows/goreleaser-release.yml b/.github/workflows/goreleaser-release.yml index 699048b..56d10c2 100644 --- a/.github/workflows/goreleaser-release.yml +++ b/.github/workflows/goreleaser-release.yml @@ -89,7 +89,7 @@ jobs: echo "Checking out latest tag: ${LATEST_TAG}" git checkout "${LATEST_TAG}" - name: Set up Go - uses: actions/setup-go@v6 + uses: actions/setup-go@v7 with: go-version: ${{ inputs.go-version }} # When neither version input is given, default to /go.mod diff --git a/.github/workflows/release-check.yml b/.github/workflows/release-check.yml index ce646fd..28fd58a 100644 --- a/.github/workflows/release-check.yml +++ b/.github/workflows/release-check.yml @@ -40,7 +40,7 @@ jobs: } core.setOutput('json', JSON.stringify(pr)); - uses: actions/checkout@v7 - - uses: actions/setup-go@v6 + - uses: actions/setup-go@v7 with: go-version: stable - id: version