Merge pull request #20 from deining/fix-restore-cache-failed-warning

GitHub actions: fix warning: restore cache failed
This commit is contained in:
makeworld
2024-03-17 18:04:30 -04:00
committed by GitHub
2 changed files with 4 additions and 0 deletions

View File

@@ -17,6 +17,8 @@ jobs:
uses: actions/setup-go@v5
with:
go-version: 1.21
cache: true
cache-dependency-path: '**/go.sum'
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
with:

View File

@@ -24,6 +24,8 @@ jobs:
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache: true
cache-dependency-path: '**/go.sum'
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/cache@v4