Forgot to add ID for cache step and adjusting the cache key.

This commit is contained in:
2025-01-03 10:33:51 -05:00
parent 78400eec08
commit 7b67284ddb
+3 -3
View File
@@ -41,11 +41,11 @@ jobs:
uses: actions/checkout@v4
- name: Cache flarectl and Go dependencies
id: cache-flarectl
uses: actions/cache@v4
with:
path: |
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
path: ~/go/pkg/mod
key: ${{ runner.os }}-${{ hashFiles('**/go.sum') }}
- name: Setup yq
uses: dcarbone/install-yq-action@v1