Skip to content
Compare
Choose a tag to compare
@dmitry-shibanov dmitry-shibanov released this 15 Mar 13:18
· 40 commits to main since this release
4d34df0

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.

steps:
  - uses: actions/checkout@v3
  - uses: actions/setup-go@v4
    with:
      go-version: ‘1.19’
  - run: go run hello.go

Besides, we introduce such changes as