From 6778972ce65056c13048554acbc51333621d59eb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Aug 2022 10:02:10 -0300 Subject: [PATCH] chore(deps): bump actions/setup-go from 3.2.1 to 3.3.0 (#3340) Bumps [actions/setup-go](https://github.com/actions/setup-go) from 3.2.1 to 3.3.0.
Release notes

Sourced from actions/setup-go's releases.

Support architecture input and fix Expand-Archive issue

This release introduces support for architecture input for setup-go action #253. It also adds support for arm32 architecture for self-hosted runners. If architecture is not provided action will use default runner architecture. Example of usage:

steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
  with:
   go-version: '1.16'
   architecture: arm

This release also provides fix for issue #241. #250 adds support for using explicit filename for Windows which is necessary to satisfy Expand-Archive's requirement on .zip extension.

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/setup-go&package-manager=github_actions&previous-version=3.2.1&new-version=3.3.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 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/build.yml | 2 +- .github/workflows/docs.yml | 2 +- .github/workflows/generate.yml | 2 +- .github/workflows/lint.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8cb54fd9f..35fa1eb7c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -62,7 +62,7 @@ jobs: sudo apt-get -yq --no-install-suggests --no-install-recommends install snapcraft mkdir -p $HOME/.cache/snapcraft/download mkdir -p $HOME/.cache/snapcraft/stage-packages - - uses: actions/setup-go@84cbf8094393cdc5fe1fe1671ff2647332956b1a # v3 + - uses: actions/setup-go@268d8c0ca0432bb2cf416faae41297df9d262d7f # v3 with: go-version: '1.19' - uses: actions/cache@fd5de65bc895cf536527842281bea11763fefd77 # v3 diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index a00893aae..ddfc673b5 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -21,7 +21,7 @@ jobs: - uses: arduino/setup-task@ca745e18916de727f841ec824ac20a615f1cddea # v1 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - - uses: actions/setup-go@84cbf8094393cdc5fe1fe1671ff2647332956b1a # v3 + - uses: actions/setup-go@268d8c0ca0432bb2cf416faae41297df9d262d7f # v3 with: go-version: 1.19 - run: task docs:build diff --git a/.github/workflows/generate.yml b/.github/workflows/generate.yml index f94cc4899..e2044ed70 100644 --- a/.github/workflows/generate.yml +++ b/.github/workflows/generate.yml @@ -22,7 +22,7 @@ jobs: - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v3 with: token: ${{ secrets.GH_PAT }} - - uses: actions/setup-go@84cbf8094393cdc5fe1fe1671ff2647332956b1a # v3 + - uses: actions/setup-go@268d8c0ca0432bb2cf416faae41297df9d262d7f # v3 with: go-version: 1.19 - uses: arduino/setup-task@ca745e18916de727f841ec824ac20a615f1cddea # v1 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 4efdb4dd9..af392a097 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -17,7 +17,7 @@ jobs: name: lint runs-on: ubuntu-latest steps: - - uses: actions/setup-go@84cbf8094393cdc5fe1fe1671ff2647332956b1a # v3 + - uses: actions/setup-go@268d8c0ca0432bb2cf416faae41297df9d262d7f # v3 with: go-version: ~1.19 - uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v3