From 4430e753967f1f56b416d6971d923a4d3f08b1a0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Jul 2026 07:23:23 +0000 Subject: [PATCH] build(deps): 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/build-and-test.yaml | 4 ++-- .github/workflows/release.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-and-test.yaml b/.github/workflows/build-and-test.yaml index af38d73..15f1f01 100644 --- a/.github/workflows/build-and-test.yaml +++ b/.github/workflows/build-and-test.yaml @@ -76,7 +76,7 @@ jobs: uses: actions/checkout@v7 # Install the Go version specified in the matrix. - name: Install Go ${{ matrix.go-version }} - uses: actions/setup-go@v6 + uses: actions/setup-go@v7 with: # Use the Go version from the matrix. go-version: ${{ matrix.go-version }} @@ -106,7 +106,7 @@ jobs: uses: actions/checkout@v7 # Install Go for the build test. - name: Install Go - uses: actions/setup-go@v6 + uses: actions/setup-go@v7 with: # Use the configured Go version. go-version: ${{ env.GO_VERSION }} diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index c5c4dde..1f03ebd 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -50,7 +50,7 @@ jobs: # Set up Go environment for building release binaries. - name: Set up Go - uses: actions/setup-go@v6 + uses: actions/setup-go@v7 with: go-version: ${{ env.GO_VERSION }} cache: true