Sourced from actions/setup-go's releases.
v3.0.0
What's Changed
- Update default runtime to node16 (actions/setup-go#192)
- Update
package-lock.jsonfile version to 2 (actions/setup-go#193) and@types/nodeto 16.11.25 (actions/setup-go#194)- Remove the
stableinput and fix SemVer notation (actions/setup-go#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
stableinput, 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).steps: - uses: actions/checkout@v2 - uses: actions/setup-go@v3 with: go-version: '1.18.0-rc.1' - run: go versionAdd check-latest input
In scope of this release we add the check-latest input. If
check-latestis 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-latestis set tofalse. Example of usage:steps: - uses: actions/checkout@v2 - uses: actions/setup-go@v2 with: go-version: '1.16' check-latest: true - run: go versionMoreover, we updated
@actions/corefrom1.2.6to1.6.0v2.1.5
In scope of this release we updated
matchers.jsonto improve the problem matcher pattern. For more information please refer to this pull requestv2.1.4
What's Changed
- Fix extractor selection on windows by
@​paulcacheuxin actions/setup-go#141New Contributors
@​paulcacheuxmade their first contribution in actions/setup-go#141Full Changelog: https://github.com/actions/setup-go/compare/v2.1.3...v2.1.4
v2.1.3
- Updated communication with runner to use environment files rather then workflow commands
v2.1.2
This release includes vendored licenses for this action's npm dependencies.
... (truncated)
3cc1237 Merge pull request #670 from actions/thboop/node16upgrade76e9fbc update node version6467b96 Update default runtime to node168af6051 build(deps-dev): bump jest-circus from 27.2.0 to 27.4.6 (#665)7a7efca Fix per issue operation count (#662)04a1828 build(deps-dev): bump ts-jest from 27.0.5 to 27.1.2 (#641)65ca395 build(deps-dev): bump eslint-plugin-jest from 24.4.2 to 25.3.2 (#639)eee276c build(deps-dev): bump prettier from 2.4.1 to 2.5.1 (#628)6c2f9f3 Merge pull request #640 from dmitry-shibanov/v-dmshib/fix-check-dist37323f1 fix check-dist.ymlSourced from actions/download-artifact's releases.
v3.0.0
What's Changed
- Update default runtime to node16 (actions/download-artifact#134)
- Update package-lock.json file version to 2 (actions/download-artifact#136)
Breaking Changes
With the update to Node 16, all scripts will now be run with Node 16 rather than Node 12.
v2.1.0 Download Artifact
- Improved output & logging
- Fixed issue where downloading all artifacts could cause display percentages to be over 100%
- Various small bug fixes & improvements
v2.0.10
- Retry on HTTP 500 responses from the service
v2.0.9
- Fixes to proxy related issues
v2.0.8
- Improvements to retryability if an error is encountered during artifact download
v2.0.7 download-artifact
- Improved download retry-ability if a partial download is encountered
v2.0.6
Update actions/core NPM package that is used internally
v2.0.5
- Add Third Party License Information
v2.0.4
- Use the latest version of the
@actions/artifactNPM packagev2.0.3
- Misc improvements
v2.0.2
- Support for tilde expansion
v2.0.1
- Download path output
- Improved logging
fb598a6 Merge pull request #136 from actions/jtamsut/update-lockfile-versiona4a09c5 regenerate index.js9acf51d regenerate package lock8821072 upgrade artifact versionb8bbd3b regenerate lockfile6ee3d96 revert artifact versiond4793f4 update docs for v32d338d2 upgrade package to v3360d083 update dependency on artifact libd9b73cc update lock fileSourced from actions/upload-artifact's releases.
v3.0.0
What's Changed
Breaking Changes
With the update to Node 16, all scripts will now be run with Node 16 rather than Node 12.
v2.3.1
Fix for empty fails on Windows failing on upload #281
v2.3.0 Upload Artifact
- Optimizations for faster uploads of larger files that are already compressed
- Significantly improved logging when there are chunked uploads
- Clarifications in logs around the upload size and prohibited characters that aren't allowed in the artifact name or any uploaded files
- Various other small bugfixes & optimizations
v2.2.4
- Retry on HTTP 500 responses from the service
v2.2.3
- Fixes for proxy related issues
v2.2.2
- Improved retryability and error handling
v2.2.1
- Update used actions/core package to the latest version
v2.2.0
- Support for artifact retention
v2.1.4
- Add Third Party License Information
v2.1.3
- Use updated version of the
@action/artifactNPM packagev2.1.2
- Increase upload chunk size from 4MB to 8MB
- Detect case insensitive file uploads
v2.1.1
- Fix for certain symlinks not correctly being identified as directories before starting uploads
v2.1.0
- Support for uploading artifacts with multiple paths
- Support for using exclude paths
- Updates to dependencies
... (truncated)