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
6 changes: 3 additions & 3 deletions .github/workflows/run-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
node-version: '20'

- name: Fetch source
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: .
key: source-${{ github.run_id }}
Expand All @@ -46,13 +46,13 @@ jobs:
run: ${{ inputs.build-cmd }}

- name: Cache build output
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: .
key: build-${{ inputs.build-cmd }}-${{ github.run_id }}

- name: Verify cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: .
key: build-${{ inputs.build-cmd }}-${{ github.run_id }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-chunk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:

- name: Restore working directory
id: restore-dir
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: .
key: ${{ inputs.wdir }}
Expand All @@ -63,13 +63,13 @@ jobs:
command: ${{ inputs.cmd }}

- name: Save working directory
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: .
key: test-${{ inputs.cmd }}-${{ inputs.chunk-no }}-${{ github.run_id }}

- name: Verify cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: .
key: test-${{ inputs.cmd }}-${{ inputs.chunk-no }}-${{ github.run_id }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ jobs:
run: npm ci

- name: Cache source
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: .
key: source-${{ github.run_id }}

- name: Verify cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: .
key: source-${{ github.run_id }}
Expand All @@ -79,7 +79,7 @@ jobs:
with:
node-version: '20'
- name: Restore source
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: .
key: source-${{ github.run_id }}
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
with:
node-version: '20'
- name: Restore source
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: .
key: source-${{ github.run_id }}
Expand All @@ -145,7 +145,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Restore working directory
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: .
key: ${{ needs.test.outputs.wdir }}
Expand Down
Loading