Skip to content
Open
Show file tree
Hide file tree
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/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
uses: ./.github/actions/version
- name: Check cache for Toolkit image
id: cache-toolkit
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
env:
cache-name: toolkit-build-x86_64-${{ github.event_name }}
lookup-only: true
Expand All @@ -67,7 +67,7 @@ jobs:
- if: ${{ steps.cache-toolkit.outputs.cache-hit != 'true' }}
name: Save toolkit image in cache
id: save-toolkit
uses: actions/cache/save@v4
uses: actions/cache/save@v5
env:
cache-name: toolkit-build-x86_64-${{ github.event_name }}
with:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/build_and_test_arm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
git fetch --prune --unshallow
- name: Cached ISO
id: cache-iso
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
env:
cache-name: pr-iso-build-aarch64-${{ inputs.flavor }}
enableCrossOsArchive: true
Expand All @@ -50,7 +50,7 @@ jobs:
- if: ${{ steps.cache-iso.outputs.cache-hit != 'true' }}
name: Save ISO
id: save-iso
uses: actions/cache/save@v4
uses: actions/cache/save@v5
env:
cache-name: pr-iso-build-aarch64-${{ inputs.flavor }}
with:
Expand All @@ -69,7 +69,7 @@ jobs:
- run: |
git fetch --prune --unshallow
- name: Checks cached Disk
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
id: cache-check
env:
cache-name: pr-disk-build-aarch64-${{ inputs.flavor }}
Expand All @@ -94,7 +94,7 @@ jobs:
- if: ${{ steps.cache-check.outputs.cache-hit != 'true' }}
name: Save cached disk
id: cache-disk
uses: actions/cache/save@v4
uses: actions/cache/save@v5
env:
cache-name: pr-disk-build-aarch64-${{ inputs.flavor }}
with:
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
git fetch --prune --unshallow
- name: Cached Disk
id: cache-disk
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
env:
cache-name: pr-disk-build-aarch64-${{ inputs.flavor }}
with:
Expand Down Expand Up @@ -177,7 +177,7 @@ jobs:
git fetch --prune --unshallow
- name: Cached ISO
id: cache-iso
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
env:
cache-name: pr-iso-build-aarch64-${{ inputs.flavor }}
with:
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/build_and_test_x86.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
git fetch --prune --unshallow
- name: Check cache for OS image
id: cache-os
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
env:
cache-name: os-build-x86_64-${{ inputs.flavor }}-${{ github.event_name }}
lookup-only: true
Expand All @@ -52,7 +52,7 @@ jobs:
- if: ${{ steps.cache-os.outputs.cache-hit != 'true' }}
name: Save OS image in cache
id: save-os
uses: actions/cache/save@v4
uses: actions/cache/save@v5
env:
cache-name: os-build-x86_64-${{ inputs.flavor }}-${{ github.event_name }}
with:
Expand All @@ -77,7 +77,7 @@ jobs:
git fetch --prune --unshallow
- name: Cached ISO
id: cache-iso
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
env:
cache-name: iso-build-x86_64-${{ inputs.flavor }}-${{ github.event_name }}
lookup-only: true
Expand All @@ -98,7 +98,7 @@ jobs:
- if: ${{ steps.cache-iso.outputs.cache-hit != 'true' }}
name: Save ISO
id: save-iso
uses: actions/cache/save@v4
uses: actions/cache/save@v5
env:
cache-name: iso-build-x86_64-${{ inputs.flavor }}-${{ github.event_name }}
with:
Expand All @@ -122,7 +122,7 @@ jobs:
- run: |
git fetch --prune --unshallow
- name: Checks cached Disk
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
id: cache-disk
env:
cache-name: disk-build-x86_64-${{ inputs.flavor }}-${{ github.event_name }}
Expand All @@ -145,7 +145,7 @@ jobs:
- if: ${{ steps.cache-disk.outputs.cache-hit != 'true' }}
name: Save cached disk
id: save-disk
uses: actions/cache/save@v4
uses: actions/cache/save@v5
env:
cache-name: disk-build-x86_64-${{ inputs.flavor }}-${{ github.event_name }}
with:
Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:
- if: ${{ matrix.test != 'test-upgrade' }}
name: Cached Disk
id: cache-disk
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
env:
cache-name: disk-build-x86_64-${{ inputs.flavor }}-${{ github.event_name }}
with:
Expand Down Expand Up @@ -266,7 +266,7 @@ jobs:
git fetch --prune --unshallow
- name: Cached ISO
id: cache-iso
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
env:
cache-name: iso-build-x86_64-${{ inputs.flavor }}-${{ github.event_name }}
with:
Expand Down