chore(deps): update actions/setup-go action to v5 #314
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v2.1.3
->v5.0.0
Release Notes
actions/setup-go (actions/setup-go)
v5.0.0
Compare Source
What's Changed
In scope of this release, we change Nodejs runtime from node16 to node20 (https://github.com/actions/setup-go/pull/421). Moreover, we update some dependencies to the latest versions (https://github.com/actions/setup-go/pull/445).
Besides, this release contains such changes as:
New Contributors
Full Changelog: actions/setup-go@v4...v5.0.0
v4.1.0
Compare Source
What's Changed
In scope of this release, slow installation on Windows was fixed by @dsame in https://github.com/actions/setup-go/pull/393 and OS version was added to
primaryKey
for Ubuntu runners to avoid conflicts (https://github.com/actions/setup-go/pull/383)This release also includes the following changes:
New Contributors
Full Changelog: actions/setup-go@v4...v4.1.0
v4.0.1
Compare Source
What's Changed
v4
by @dsame in https://github.com/actions/setup-go/pull/354xml2js
dependency by @dmitry-shibanov in https://github.com/actions/setup-go/pull/370@actions/cache
dependency to v3.2.1 by @nikolai-laevskii in https://github.com/actions/setup-go/pull/374New Contributors
Full Changelog: actions/setup-go@v4...v4.0.1
v4.0.0
Compare Source
In scope of release we enable cache by default. The action won’t throw an error if the cache can’t be restored or saved. The action will throw a warning message but it won’t stop a build process. The cache can be disabled by specifying
cache: false
.Besides, we introduce such changes as
v3.5.0
: Add support for stable and oldstable aliasesCompare Source
In scope of this release we introduce aliases for the
go-version
input. Thestable
alias instals the latest stable version of Go. Theoldstable
alias installs previous latest minor release (the stable is 1.19.x -> the oldstable is 1.18.x).Stable
OldStable
v3.4.0
: Add support for go.work and pass the token input through on GHESCompare Source
In scope of this release we added support for go.work file to pass it in go-version-file input.
Besides, we added support to pass the token input through on GHES.
v3.3.1
: Fix cache issues and update dependenciesCompare Source
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 (https://github.com/actions/setup-go/pull/267). Moreover, we fixed an issue when the cache folder was not found. Besides, we updatedactions/core
to 1.10.0 version (https://github.com/actions/setup-go/pull/273).v3.3.0
: Support architecture input and fix Expand-Archive issueCompare Source
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:
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.
v3.2.1
: Update actions/cache version to 3.0.0Compare Source
In scope of this release we updated
actions/cache
package as the new version contains fixes for caching error handlingv3.2.0
: Support for caching dependency files and compiler's build outputsCompare Source
This release introduces support for caching dependency files and compiler's build outputs #228. For that action uses @toolkit/cache library under the hood that in turn allows getting rid of configuring @actions/cache action separately and simplifies the whole workflow.
Such input parameters as
cache
andcache-dependency-path
were added. Thecache
input is optional, and caching is turned off by default,cache-dependency-path
is used to specify the path to a dependency file -go.sum
.Examples of use-cases:
cache
input only:cache
along withcache-dependency-path
:v3.1.0
: Add go-version-file inputCompare Source
Adding Go version file support
In scope of this release we add the go-version-file input. The new input (
go-version-file
) provides functionality to specify the path to the file containing Go version with such behaviour:Besides, the following pull requests included in this release:
v3.0.0
Compare Source
What's Changed
package-lock.json
file version to 2 (https://github.com/actions/setup-go/pull/193) and@types/node
to 16.11.25 (https://github.com/actions/setup-go/pull/194)stable
input and fix SemVer notation (https://github.com/actions/setup-go/pull/195)Breaking Changes
With the update to Node 16, all scripts will now be run with Node 16 rather than Node 12.
This new major release removes the
stable
input, so there is no need to specify additional input to use pre-release versions. This release also corrects the pre-release versions syntax to satisfy the SemVer notation (1.18.0-beta1 -> 1.18.0-beta.1, 1.18.0-rc1 -> 1.18.0-rc.1).v2.2.0
: Add check-latest inputCompare Source
In scope of this release we add the check-latest input. If
check-latest
is set totrue
, the action first checks if the cached version is the latest one. If the locally cached version is not the most up-to-date, a Go version will then be downloaded from go-versions repository. By defaultcheck-latest
is set tofalse
.Example of usage:
Moreover, we updated
@actions/core
from1.2.6
to1.6.0
v2.1.5
Compare Source
In scope of this release we updated
matchers.json
to improve the problem matcher pattern. For more information please refer to this pull requestv2.1.4
Compare Source
What's Changed
New Contributors
Full Changelog: actions/setup-go@v2.1.3...v2.1.4
Configuration
📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.