github actions/setup-go v3.0.0

latest releases: v5.0.1, v5.0.0, v5...
2 years ago

What's Changed

  • Update default runtime to node16 (#192)
  • Update package-lock.json file version to 2 (#193) and @types/node to 16.11.25 (#194)
  • Remove the stable input and fix SemVer notation (#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).

steps:
  - uses: actions/checkout@v2
  - uses: actions/setup-go@v3
    with:
      go-version: '1.18.0-rc.1' 
  - run: go version

Don't miss a new setup-go release

NewReleases is sending notifications on new releases.