diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 033df7ab..1d8a5aee 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -92,14 +92,14 @@ jobs: # Regardless of whether `key` was found or not, it will be created at the end of the run. # With this mechanism, we ensure caches are cycled regularly. - name: Go modules cache - uses: actions/cache@v4.2.1 + uses: actions/cache@v4.2.2 with: path: ~/go/pkg/mod key: gomod-${{ hashFiles('**/go.sum') }} restore-keys: | gomod- - name: Build cache - uses: actions/cache@v4.2.1 + uses: actions/cache@v4.2.2 with: path: ~/.cache/go-build key: gobuild-${{ matrix.goos }}-${{ matrix.goarch }}-${{ github.sha }} @@ -130,14 +130,14 @@ jobs: go-version-file: 'go.mod' id: go - name: Go modules cache - uses: actions/cache@v4.2.1 + uses: actions/cache@v4.2.2 with: path: ~/go/pkg/mod key: gomod-${{ hashFiles('**/go.sum') }} restore-keys: | gomod- - name: Build cache - uses: actions/cache@v4.2.1 + uses: actions/cache@v4.2.2 with: path: ~/.cache/go-build key: gobuild-linux-amd64-${{ github.sha }}