From 2b1889643602b048812f3faa76bd479b8dc7300e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Dec 2024 13:55:58 -0800 Subject: [PATCH] chore: bump actions/setup-go from 5.1.0 to 5.2.0 (#781) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [actions/setup-go](https://github.com/actions/setup-go) from 5.1.0 to 5.2.0.
Release notes

Sourced from actions/setup-go's releases.

v5.2.0

What's Changed

New Contributors

Full Changelog: https://github.com/actions/setup-go/compare/v5...v5.2.0

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/setup-go&package-manager=github_actions&previous-version=5.1.0&new-version=5.2.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/codeql.yml | 2 +- .github/workflows/create-release.yml | 2 +- .github/workflows/e2e-workflow.yml | 2 +- .github/workflows/lint-go.yml | 2 +- .github/workflows/publish-workspace-mcr-image.yml | 2 +- .github/workflows/unit-tests.yml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index e849773b3..d0ff36789 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -32,7 +32,7 @@ jobs: submodules: true fetch-depth: 0 - - uses: actions/setup-go@v5.1.0 + - uses: actions/setup-go@v5.2.0 with: go-version-file: 'go.mod' diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 142cf02e7..70de1057a 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -21,7 +21,7 @@ jobs: egress-policy: audit - name: Set up Go ${{ env.GO_VERSION }} - uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0 + uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0 with: go-version: ${{ env.GO_VERSION }} diff --git a/.github/workflows/e2e-workflow.yml b/.github/workflows/e2e-workflow.yml index 183e76231..e1ded0172 100644 --- a/.github/workflows/e2e-workflow.yml +++ b/.github/workflows/e2e-workflow.yml @@ -72,7 +72,7 @@ jobs: run: sudo rm -rf ~/go/pkg/mod - name: Set up Go ${{ env.GO_VERSION }} - uses: actions/setup-go@v5.1.0 + uses: actions/setup-go@v5.2.0 with: go-version: ${{ env.GO_VERSION }} diff --git a/.github/workflows/lint-go.yml b/.github/workflows/lint-go.yml index 342b0ffdc..1006e7ca5 100644 --- a/.github/workflows/lint-go.yml +++ b/.github/workflows/lint-go.yml @@ -35,7 +35,7 @@ jobs: fetch-depth: 0 - name: Set up Go ${{ env.GO_VERSION }} - uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0 + uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0 with: go-version: ${{ env.GO_VERSION }} diff --git a/.github/workflows/publish-workspace-mcr-image.yml b/.github/workflows/publish-workspace-mcr-image.yml index 2a7497639..2b3d54b79 100644 --- a/.github/workflows/publish-workspace-mcr-image.yml +++ b/.github/workflows/publish-workspace-mcr-image.yml @@ -18,7 +18,7 @@ jobs: environment: publish-mcr steps: - name: Set up Go ${{ env.GO_VERSION }} - uses: actions/setup-go@v5.1.0 + uses: actions/setup-go@v5.2.0 with: go-version: ${{ env.GO_VERSION }} diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index e559c760d..0298475ae 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -36,7 +36,7 @@ jobs: fetch-depth: 0 - name: Set up Go ${{ env.GO_VERSION }} - uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0 + uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0 with: go-version: ${{ env.GO_VERSION }} - name: Generate APIs