diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 313e213a8..dda83257d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -138,7 +138,7 @@ jobs: ruby-version: '4.0' bundler-cache: true - id: docker-cache - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: path: /tmp/ezbake-builder.tar key: docker-ezbake-${{ hashFiles('Dockerfile') }} @@ -150,7 +150,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