Browse Source

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

GitHub actions: fix warning: restore cache failed
pull/21/head
makeworld 2 years ago committed by GitHub
parent
commit
a885755409
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      .github/workflows/goreleaser.yml
  2. 2
      .github/workflows/test.yml

2
.github/workflows/goreleaser.yml

@ -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:

2
.github/workflows/test.yml

@ -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

Loading…
Cancel
Save