diff --git a/.github/workflows/check-bundle.yml b/.github/workflows/check-bundle.yml index e77025f..d85066f 100644 --- a/.github/workflows/check-bundle.yml +++ b/.github/workflows/check-bundle.yml @@ -29,14 +29,14 @@ jobs: # Cache go build cache, used to speedup go test - name: Go Build Cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.go-cache-paths.outputs.go-build }} key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }} # Cache go mod cache, used to speedup builds - name: Go Mod Cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.go-cache-paths.outputs.go-mod }} key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }} diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 7d00c75..cf04897 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -26,14 +26,14 @@ jobs: # Cache go build cache, used to speedup go test - name: Go Build Cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.go-cache-paths.outputs.go-build }} key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }} # Cache go mod cache, used to speedup builds - name: Go Mod Cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.go-cache-paths.outputs.go-mod }} key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }} @@ -49,7 +49,7 @@ jobs: # Kubebuilder Envtest assets - name: Kubebuilder Envtest - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.envtest-info.outputs.envtest-path }} key: Envtest-cache-${{ steps.envtest-info.outputs.envtest-version }}-${{ steps.envtest-info.outputs.goos }}-${{ steps.envtest-info.outputs.goarch }}