Skip to content

Commit 2b73cf1

Browse files
chore(deps): update actions/setup-node action to v6 (#41)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: WarningImHack3r <[email protected]>
1 parent dbca596 commit 2b73cf1

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

.github/workflows/main.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,10 @@ jobs:
2323
uses: pnpm/action-setup@v4
2424

2525
- name: Set up Node.js
26-
uses: actions/setup-node@v5
26+
uses: actions/setup-node@v6
2727
with:
2828
node-version: latest
29+
cache: pnpm
2930

3031
- name: Install dependencies
3132
run: pnpm install --frozen-lockfile
@@ -46,9 +47,10 @@ jobs:
4647
uses: pnpm/action-setup@v4
4748

4849
- name: Set up Node.js
49-
uses: actions/setup-node@v5
50+
uses: actions/setup-node@v6
5051
with:
5152
node-version: latest
53+
cache: pnpm
5254

5355
- name: Install dependencies
5456
run: pnpm install --frozen-lockfile
@@ -72,9 +74,10 @@ jobs:
7274
uses: pnpm/action-setup@v4
7375

7476
- name: Set up Node.js
75-
uses: actions/setup-node@v5
77+
uses: actions/setup-node@v6
7678
with:
7779
node-version: latest
80+
cache: pnpm
7881

7982
- name: Install dependencies
8083
run: pnpm install --frozen-lockfile
@@ -102,9 +105,10 @@ jobs:
102105
uses: pnpm/action-setup@v4
103106

104107
- name: Set up Node.js
105-
uses: actions/setup-node@v5
108+
uses: actions/setup-node@v6
106109
with:
107110
node-version: latest
111+
cache: pnpm
108112

109113
- name: Set up Bun # Bun is the only way I can run the script that generates the map with such an import statement with
110114
uses: oven-sh/setup-bun@v2 # it's also the fastest runtime and is 100% compatible with Node sooo 🤷‍♂️

.github/workflows/publish.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,11 @@ jobs:
2525
uses: pnpm/action-setup@v4
2626

2727
- name: Use Node.js
28-
uses: actions/setup-node@v5
28+
uses: actions/setup-node@v6
2929
with:
3030
node-version: latest
3131
registry-url: https://registry.npmjs.org
32+
cache: pnpm
3233

3334
- name: Install dependencies
3435
run: pnpm install --frozen-lockfile

0 commit comments

Comments
 (0)