From 097baac60630f989f2bb2629d216aa48c9dd1d06 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 19 Oct 2022 09:54:46 -0300 Subject: [PATCH] chore(deps): bump actions/setup-go from 3.3.0 to 3.3.1 (#3477) 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 3.3.0 to 3.3.1.
Release notes

Sourced from actions/setup-go's releases.

Fix cache issues and update dependencies

In scope of this release we fixed the issue with the correct generation of the cache key when the go-version-file input is set (actions/setup-go#267). Moreover, we fixed an issue when the cache folder was not found. Besides, we updated actions/core to 1.10.0 version (actions/setup-go#273).

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/setup-go&package-manager=github_actions&previous-version=3.3.0&new-version=3.3.1)](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/fig.yml | 2 +- .github/workflows/generate.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/release.yml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e0b1e5121..b67780d91 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -50,7 +50,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@268d8c0ca0432bb2cf416faae41297df9d262d7f # v3 + - uses: actions/setup-go@c4a742cab115ed795e34d4513e2cf7d472deb55f # v3 with: go-version: '>=1.19.2' cache: true diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index b37e29cd6..deb05de7c 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -21,7 +21,7 @@ jobs: - uses: arduino/setup-task@d665c6beebae46ff3f699d7b2fd3f1959de7153c # v1 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - - uses: actions/setup-go@268d8c0ca0432bb2cf416faae41297df9d262d7f # v3 + - uses: actions/setup-go@c4a742cab115ed795e34d4513e2cf7d472deb55f # v3 with: go-version: '>=1.19.2' - run: task docs:build diff --git a/.github/workflows/fig.yml b/.github/workflows/fig.yml index 8e04212f3..6c0d61b56 100644 --- a/.github/workflows/fig.yml +++ b/.github/workflows/fig.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3 - - uses: actions/setup-go@268d8c0ca0432bb2cf416faae41297df9d262d7f # v3 + - uses: actions/setup-go@c4a742cab115ed795e34d4513e2cf7d472deb55f # v3 with: go-version: '>=1.19.2' cache: true diff --git a/.github/workflows/generate.yml b/.github/workflows/generate.yml index ff578c610..5e64c198f 100644 --- a/.github/workflows/generate.yml +++ b/.github/workflows/generate.yml @@ -22,7 +22,7 @@ jobs: - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3 with: token: ${{ secrets.GH_PAT }} - - uses: actions/setup-go@268d8c0ca0432bb2cf416faae41297df9d262d7f # v3 + - uses: actions/setup-go@c4a742cab115ed795e34d4513e2cf7d472deb55f # v3 with: go-version: '>=1.19.2' cache: true diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index d85968f2c..9623262d4 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@268d8c0ca0432bb2cf416faae41297df9d262d7f # v3 + - uses: actions/setup-go@c4a742cab115ed795e34d4513e2cf7d472deb55f # v3 with: go-version: '>=1.19.2' - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dc7f77602..0b65546a6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -61,7 +61,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@268d8c0ca0432bb2cf416faae41297df9d262d7f # v3 + - uses: actions/setup-go@c4a742cab115ed795e34d4513e2cf7d472deb55f # v3 with: go-version: '>=1.19.2' cache: true