From 03b3f9d573319d75de4b12263b87cb0eff57cdbb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 05:17:10 +0000 Subject: [PATCH] chore(deps): bump actions/setup-go from 5 to 6 Bumps [actions/setup-go](https://github.com/actions/setup-go) from 5 to 6. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/setup-go dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/go-check.yml | 4 ++-- .github/workflows/go-test.yml | 4 ++-- .github/workflows/release-check.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/go-check.yml b/.github/workflows/go-check.yml index 45d22a9..285d777 100644 --- a/.github/workflows/go-check.yml +++ b/.github/workflows/go-check.yml @@ -37,7 +37,7 @@ jobs: fi - name: Check out the latest stable version of Go id: stable - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version: stable cache: false @@ -50,7 +50,7 @@ jobs: - name: Set up the Go version read from the go.mod file id: go if: (inputs.go-version || fromJSON(steps.go-mod.outputs.json).Go) != steps.stable.outputs.go-version || inputs.go-cache != 'false' - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version: ${{ inputs.go-version || fromJSON(steps.go-mod.outputs.json).Go }} cache: ${{ inputs.go-cache }} diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml index 238ec31..47bd082 100644 --- a/.github/workflows/go-test.yml +++ b/.github/workflows/go-test.yml @@ -45,7 +45,7 @@ jobs: submodules: recursive - name: Check out the latest stable version of Go id: stable - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version: stable cache: false @@ -94,7 +94,7 @@ jobs: echo "GO386FLAGS=-v $GO386FLAGS" >> $GITHUB_ENV echo "GORACEFLAGS=-v $GORACEFLAGS" >> $GITHUB_ENV - name: Set up the Go version read from the go.mod file - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 if: steps.go.outputs.version != steps.stable.outputs.go-version || inputs.go-cache != 'false' with: go-version: ${{ steps.go.outputs.version }} diff --git a/.github/workflows/release-check.yml b/.github/workflows/release-check.yml index 390ae5f..e5c35a6 100644 --- a/.github/workflows/release-check.yml +++ b/.github/workflows/release-check.yml @@ -57,7 +57,7 @@ jobs: - uses: actions/checkout@v5 - id: go-mod uses: ipdxco/unified-github-workflows/.github/actions/read-go-mod@main - - uses: actions/setup-go@v5 + - uses: actions/setup-go@v6 with: go-version: ${{ fromJSON(steps.go-mod.outputs.json).Go || 'stable' }} cache: false