diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 9423fb6a..def1cdd2 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -102,7 +102,7 @@ jobs: - name: Display Ruby environment run: bundle env - id: docker-cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: /tmp/ezbake-builder.tar key: docker-ezbake-${{ matrix.project }}-${{ hashFiles('Dockerfile') }} @@ -114,7 +114,7 @@ jobs: docker build -t ezbake-builder . docker save ezbake-builder -o /tmp/ezbake-builder.tar fi - - uses: actions/cache/save@v4 + - uses: actions/cache/save@v5 if: always() && steps.docker-cache.outputs.cache-hit != 'true' with: path: /tmp/ezbake-builder.tar