Skip to content

Commit 3fd6abf

Browse files
authored
Freeze NodeJS to 20 (#175)
* Freeze NodeJS to 20. * Check for latest 20.x release of NodeJS.
1 parent 570e8e2 commit 3fd6abf

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/dependabot-automerge.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ jobs:
2323
- name: Setup Node
2424
uses: actions/setup-node@v4
2525
with:
26-
node-version: '18' # set to your project's Node version
26+
node-version: '20'
27+
check-latest: true
2728

2829
- name: Enable pnpm (Corepack)
2930
run: |

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Node.js
1919
uses: actions/setup-node@v4
2020
with:
21-
node-version: 22
21+
node-version: '20'
2222
check-latest: true
2323
- name: Install dependencies
2424
run: pnpm install

0 commit comments

Comments
 (0)