diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 19cb685..b8996a7 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -47,14 +47,14 @@ jobs: echo "go-mod=$(go env GOMODCACHE)" >> "$GITHUB_OUTPUT" - name: cache restore - GOCACHE - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v6 with: path: ${{ steps.go-cache-paths.outputs.go-build }} key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }} enableCrossOsArchive: true - name: cache restore - GOMODCACHE - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v6 with: path: ${{ steps.go-cache-paths.outputs.go-mod }} key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}