Skip to content

Commit dcfef24

Browse files
committed
Use Node.js 24 & update action versions
1 parent baf0706 commit dcfef24

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/pull_request_stats.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ jobs:
1717
name: PR Stats
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121
with:
2222
fetch-depth: 2
2323

2424
- name: Setup Node.js environment
2525
uses: actions/setup-node@v3
2626
with:
27-
node-version: 18
27+
node-version: 24
2828
registry-url: https://registry.npmjs.org/
2929

3030
# We use week in the turbo cache key to keep the cache from infinitely growing
@@ -33,7 +33,7 @@ jobs:
3333

3434
- name: Turbo Cache
3535
id: turbo-cache
36-
uses: actions/cache@v3
36+
uses: actions/cache@v4
3737
with:
3838
path: .turbo
3939
key: turbo-${{ github.job }}-${{ github.ref_name }}-${{ steps.get-week.outputs.WEEK }}-${{ github.sha }}

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ jobs:
2020
name: Release
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
2424
with:
2525
fetch-depth: 2
2626

2727
- name: Setup Node.js environment
28-
uses: actions/setup-node@v3
28+
uses: actions/setup-node@v4
2929
with:
30-
node-version: 18
30+
node-version: 24
3131
registry-url: https://registry.npmjs.org/
3232

3333
# We use week in the turbo cache key to keep the cache from infinitely growing
@@ -36,7 +36,7 @@ jobs:
3636

3737
- name: Turbo Cache
3838
id: turbo-cache
39-
uses: actions/cache@v3
39+
uses: actions/cache@v4
4040
with:
4141
path: .turbo
4242
key: turbo-${{ github.job }}-${{ github.ref_name }}-${{ steps.get-week.outputs.WEEK }}-${{ github.sha }}

0 commit comments

Comments
 (0)