Merge pull request #503 from ahmetb/dependabot/github_actions/actions/cache-6

auto-merge per updated dependabot workflow
This commit is contained in:
Ahmet Alp Balkan
2026-07-17 17:06:15 -07:00
committed by GitHub

View File

@@ -31,12 +31,12 @@ jobs:
echo "go-build=$(go env GOCACHE)" >> "$GITHUB_OUTPUT"
echo "go-mod=$(go env GOMODCACHE)" >> "$GITHUB_OUTPUT"
- name: Go Build Cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ${{ steps.go-cache-paths.outputs.go-build }}
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}
- name: Go Mod Cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ${{ steps.go-cache-paths.outputs.go-mod }}
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}