Skip to content

Commit 71cff3b

Browse files
Update actions/cache action to v5
1 parent c5ec2e1 commit 71cff3b

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ jobs:
3333
deno-version: v2.x
3434

3535
- name: Configure Deno cache
36-
uses: actions/cache@v4
36+
uses: actions/cache@v5
3737
with:
3838
path: ~/.cache/deno
3939
key: deno-${{ hashFiles('deno.lock') }}
4040
restore-keys: deno-
4141

4242
- name: Configure build cache
43-
uses: actions/cache@v4
43+
uses: actions/cache@v5
4444
with:
4545
path: _cache
4646
key: lume-${{ hashFiles('src/**', '_config.ts') }}
@@ -54,7 +54,7 @@ jobs:
5454
touch public/.nojekyll
5555
5656
- name: Configure npm cache # Where wrangler is installed
57-
uses: actions/cache@v4
57+
uses: actions/cache@v5
5858
with:
5959
path: ~/.npm
6060
key: npm-${{ github.run_id }}

.github/workflows/update_lockfile.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ jobs:
2020

2121

2222
- name: Configure Deno cache
23-
uses: actions/cache@v4
23+
uses: actions/cache@v5
2424
with:
2525
path: ~/.cache/deno
2626
key: deno-${{ hashFiles('deno.lock') }}
2727
restore-keys: deno-
2828

2929
- name: Configure build cache
30-
uses: actions/cache@v4
30+
uses: actions/cache@v5
3131
with:
3232
path: _cache
3333
key: lume-${{ hashFiles('src/**', '_config.ts') }}

0 commit comments

Comments
 (0)