From eaacb0a052cf25124886e91067eb04a4f62621db Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 Dec 2024 03:47:50 +0000 Subject: [PATCH] build(deps): bump actions/setup-go from 3 to 5 Bumps [actions/setup-go](https://github.com/actions/setup-go) from 3 to 5. - [Release notes](https://github.com/actions/setup-go/releases) - [Commits](https://github.com/actions/setup-go/compare/v3...v5) --- updated-dependencies: - dependency-name: actions/setup-go dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/nightly.yaml | 2 +- .github/workflows/post-merge.yaml | 2 +- .github/workflows/post-tag.yaml | 2 +- .github/workflows/pull-request.yaml | 6 +++--- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index da9db00e78..a78ae75e8b 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -37,7 +37,7 @@ jobs: run: echo "::set-output name=go_version::$(cat .go-version)" - name: Install Go (${{ steps.go_version.outputs.go_version }}) - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version: ${{ steps.go_version.outputs.go_version }} diff --git a/.github/workflows/nightly.yaml b/.github/workflows/nightly.yaml index 84c4530ac8..daae623d81 100644 --- a/.github/workflows/nightly.yaml +++ b/.github/workflows/nightly.yaml @@ -37,7 +37,7 @@ jobs: run: echo "::set-output name=go_version::$(cat .go-version)" - name: Install Go (${{ steps.go_version.outputs.go_version }}) - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version: ${{ steps.go_version.outputs.go_version }} diff --git a/.github/workflows/post-merge.yaml b/.github/workflows/post-merge.yaml index bc18321291..ee68e61e06 100644 --- a/.github/workflows/post-merge.yaml +++ b/.github/workflows/post-merge.yaml @@ -119,7 +119,7 @@ jobs: run: echo "::set-output name=go_version::$(cat .go-version)" - name: Install Go (${{ steps.go_version.outputs.go_version }}) - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version: ${{ steps.go_version.outputs.go_version }} diff --git a/.github/workflows/post-tag.yaml b/.github/workflows/post-tag.yaml index 824b62359c..33ab229877 100644 --- a/.github/workflows/post-tag.yaml +++ b/.github/workflows/post-tag.yaml @@ -59,7 +59,7 @@ jobs: run: echo "::set-output name=go_version::$(cat .go-version)" - name: Install Go (${{ steps.go_version.outputs.go_version }}) - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version: ${{ steps.go_version.outputs.go_version }} diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index 795895523f..35d39278e1 100644 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -54,7 +54,7 @@ jobs: run: echo "::set-output name=go_version::$(cat .go-version)" - name: Install Go (${{ steps.go_version.outputs.go_version }}) - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version: ${{ steps.go_version.outputs.go_version }} if: matrix.os == 'darwin' @@ -98,7 +98,7 @@ jobs: run: echo "::set-output name=go_version::$(cat .go-version)" - name: Install Go (${{ steps.go_version.outputs.go_version }}) - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version: ${{ steps.go_version.outputs.go_version }} @@ -265,7 +265,7 @@ jobs: uses: actions/download-artifact@v3 with: name: generated - - uses: actions/setup-go@v3 + - uses: actions/setup-go@v5 with: go-version: ${{ matrix.version }} - run: make build