Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/provision-and-run-e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

- name: Restore cached VM image (if available)
id: restore-cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: ${{ env.ARTIFACTS_DIR }}/${{ env.VM_NAME_BASE }}-${{ inputs.release }}.qcow2
key: >-
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
echo "Previous cache (if any) deleted"

- name: Cache the VM image
uses: actions/cache/save@v4
uses: actions/cache/save@v5
if: always() && steps.provision-vm.outcome == 'success'
with:
path: ${{ env.ARTIFACTS_DIR }}/${{ env.VM_NAME_BASE }}-${{ inputs.release }}.qcow2
Expand Down
Loading