diff --git a/.github/workflows/build_ezbake.yml b/.github/workflows/build_ezbake.yml index ef5bcce..b1ea37a 100644 --- a/.github/workflows/build_ezbake.yml +++ b/.github/workflows/build_ezbake.yml @@ -79,7 +79,7 @@ jobs: bundler-cache: true - id: docker-cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: /tmp/ezbake-builder.tar key: docker-ezbake-${{ hashFiles('Dockerfile') }} @@ -93,7 +93,7 @@ jobs: docker save ezbake-builder -o /tmp/ezbake-builder.tar fi - - uses: actions/cache/save@v5 + - uses: actions/cache/save@v6 if: always() && steps.docker-cache.outputs.cache-hit != 'true' with: path: /tmp/ezbake-builder.tar diff --git a/.github/workflows/build_ezbake_fips.yml b/.github/workflows/build_ezbake_fips.yml index 5c00f15..14ba578 100644 --- a/.github/workflows/build_ezbake_fips.yml +++ b/.github/workflows/build_ezbake_fips.yml @@ -74,7 +74,7 @@ jobs: bundler-cache: true - id: docker-cache - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: /tmp/ezbake-builder.tar key: docker-ezbake-${{ hashFiles('Dockerfile') }} @@ -88,7 +88,7 @@ jobs: docker save ezbake-builder -o /tmp/ezbake-builder.tar fi - - uses: actions/cache/save@v5 + - uses: actions/cache/save@v6 if: always() && steps.docker-cache.outputs.cache-hit != 'true' with: path: /tmp/ezbake-builder.tar