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/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
cache: 'npm'

- name: Restore node_modules
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: |
node_modules
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
cache: 'npm'

- name: Restore node_modules
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: |
node_modules
Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:
cache: 'npm'

- name: Restore node_modules
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: |
node_modules
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/benchmarks-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
continue-on-error: true

- name: Download baseline data
uses: actions/cache@v3
uses: actions/cache@v5
with:
path: benchmarks/baselines
key: benchmark-baselines-${{ github.base_ref || github.ref_name }}
Expand All @@ -74,7 +74,7 @@ jobs:

- name: Save baseline data
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop')
uses: actions/cache@v3
uses: actions/cache@v5
with:
path: benchmarks/baselines
key: benchmark-baselines-${{ github.ref_name }}-${{ github.sha }}
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: npm ci

- name: Cache node_modules
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: |
node_modules
Expand All @@ -54,7 +54,7 @@ jobs:
cache: 'npm'

- name: Restore node_modules cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: |
node_modules
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
cache: 'npm'

- name: Restore node_modules cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: |
node_modules
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
cache: 'npm'

- name: Restore node_modules cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: |
node_modules
Expand Down Expand Up @@ -218,7 +218,7 @@ jobs:
cache: 'npm'

- name: Restore node_modules cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: |
node_modules
Expand Down Expand Up @@ -252,7 +252,7 @@ jobs:
retention-days: 7

- name: Cache build outputs
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: |
packages/*/dist
Expand All @@ -275,7 +275,7 @@ jobs:
cache: 'npm'

- name: Restore node_modules cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: |
node_modules
Expand All @@ -302,7 +302,7 @@ jobs:
cache: 'npm'

- name: Restore node_modules cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: |
node_modules
Expand Down
Loading