Skip to content

Commit 310f19f

Browse files
committed
feat: Upgrade to Node 20
1 parent f0fdc24 commit 310f19f

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
- uses: actions/setup-node@v4
2121
with:
22-
node-version: 16
22+
node-version: '20.10.0'
2323
registry-url: 'https://registry.npmjs.org'
2424

2525
- name: Install Yarn

.github/workflows/production.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
- uses: actions/setup-node@v4
2020
with:
21-
node-version: 16
21+
node-version: '20.10.0'
2222
registry-url: 'https://registry.npmjs.org'
2323

2424
- name: Install Yarn

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
# Setup .npmrc file to publish to npm
1818
- uses: actions/setup-node@v4
1919
with:
20-
node-version: 16
20+
node-version: '20.10.0'
2121
registry-url: 'https://registry.npmjs.org'
2222
scope: '@jamesives'
2323

@@ -42,7 +42,7 @@ jobs:
4242
# Setup .npmrc file to publish to GitHub Packages
4343
- uses: actions/setup-node@v4
4444
with:
45-
node-version: 16
45+
node-version: '20.10.0'
4646
registry-url: 'https://npm.pkg.github.com'
4747
scope: '@jamesives'
4848

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v18.16.1
1+
v20.10.0

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: 'Fetch API Data'
22
description: 'This action will handle authenticated API requests, allowing you to save the data from the request into your workspace.'
33
author: 'James Ives <iam@jamesiv.es>'
44
runs:
5-
using: 'node16'
5+
using: 'node20'
66
main: 'lib/main.js'
77
branding:
88
icon: 'truck'

0 commit comments

Comments
 (0)