Skip to content
Compare
Choose a tag to compare
@dmitry-shibanov dmitry-shibanov released this 28 Feb 10:27
· 174 commits to main since this release
f6164bd

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