From c49739670a1e52a65494ec7e345881a134e9918d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 7 Sep 2025 07:04:46 +0000 Subject: [PATCH] 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/code_scanning.yaml | 2 +- .github/workflows/e2e.yaml | 2 +- .github/workflows/golang.yaml | 6 +++--- .github/workflows/helm.yaml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/code_scanning.yaml b/.github/workflows/code_scanning.yaml index ebcf6c53d..cf875f8e1 100644 --- a/.github/workflows/code_scanning.yaml +++ b/.github/workflows/code_scanning.yaml @@ -44,7 +44,7 @@ jobs: GOLANG_VERSION=$(./hack/golang-version.sh) echo "GOLANG_VERSION=${GOLANG_VERSION##GOLANG_VERSION := }" >> $GITHUB_ENV - name: Install Go - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version: ${{ env.GOLANG_VERSION }} - name: Initialize CodeQL diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index ff29a431c..0bde66af5 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -40,7 +40,7 @@ jobs: echo "GOLANG_VERSION=${GOLANG_VERSION##GOLANG_VERSION := }" >> $GITHUB_ENV - name: Install Go - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version: ${{ env.GOLANG_VERSION }} diff --git a/.github/workflows/golang.yaml b/.github/workflows/golang.yaml index 90e7f79d0..85afa7969 100644 --- a/.github/workflows/golang.yaml +++ b/.github/workflows/golang.yaml @@ -39,7 +39,7 @@ jobs: GOLANG_VERSION=$(./hack/golang-version.sh) echo "GOLANG_VERSION=${GOLANG_VERSION##GOLANG_VERSION := }" >> $GITHUB_ENV - name: Install Go - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version: ${{ env.GOLANG_VERSION }} - name: Lint @@ -64,7 +64,7 @@ jobs: GOLANG_VERSION=$(./hack/golang-version.sh) echo "GOLANG_VERSION=${GOLANG_VERSION##GOLANG_VERSION ?= }" >> $GITHUB_ENV - name: Install Go - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version: ${{ env.GOLANG_VERSION }} - run: make test @@ -80,7 +80,7 @@ jobs: GOLANG_VERSION=$(./hack/golang-version.sh) echo "GOLANG_VERSION=${GOLANG_VERSION##GOLANG_VERSION ?= }" >> $GITHUB_ENV - name: Install Go - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version: ${{ env.GOLANG_VERSION }} - run: make build diff --git a/.github/workflows/helm.yaml b/.github/workflows/helm.yaml index af40aafe3..bfe57e1b4 100644 --- a/.github/workflows/helm.yaml +++ b/.github/workflows/helm.yaml @@ -40,7 +40,7 @@ jobs: GOLANG_VERSION=$(./hack/golang-version.sh) echo "GOLANG_VERSION=${GOLANG_VERSION##GOLANG_VERSION ?= }" >> $GITHUB_ENV - name: Install Go - uses: actions/setup-go@v5 + uses: actions/setup-go@v6 with: go-version: ${{ env.GOLANG_VERSION }} - run: make test-helm