From 6a9097dae11e6a7ae3b67a015a0422b50cea8795 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 21 Jan 2026 04:13:36 +0000 Subject: [PATCH] chore(cicd): 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/lint.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/security.yml | 2 +- .github/workflows/test.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 47c22fe..f18b715 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -19,7 +19,7 @@ jobs: echo "go_version=${goVersion}" >> $GITHUB_OUTPUT - name: Set up Go - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version: ${{ steps.vars.outputs.go_version }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6cb2560..5360e4f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -23,7 +23,7 @@ jobs: echo "go_version=${goVersion}" >> $GITHUB_OUTPUT - name: Set up Go - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version: ${{ steps.vars.outputs.go_version }} diff --git a/.github/workflows/security.yml b/.github/workflows/security.yml index 8d10c38..1cd4321 100644 --- a/.github/workflows/security.yml +++ b/.github/workflows/security.yml @@ -23,7 +23,7 @@ jobs: echo "go_version=${goVersion}" >> $GITHUB_OUTPUT - name: Set up Go - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version: ${{ steps.vars.outputs.go_version }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8d9b929..241628a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,7 +22,7 @@ jobs: echo "Using Go version ${goVersion}" - name: Set up Go - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version: ${{ steps.vars.outputs.go_version }}