Skip to content

Commit f873240

Browse files
committed
chore: Fix release process by upgrading to node==18 because of Semantic Release requirements
Signed-off-by: Danny Chiao <[email protected]>
1 parent 08ffa8d commit f873240

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ jobs:
3131
- name: Setup Node.js
3232
uses: actions/setup-node@v2
3333
with:
34-
node-version: '16'
34+
node-version: '18.x'
35+
registry-url: 'https://registry.npmjs.org'
3536
- name: Release (Dry Run)
3637
id: get_versions
3738
run: |
@@ -56,7 +57,7 @@ jobs:
5657
- uses: actions/checkout@v2
5758
- uses: actions/setup-node@v2
5859
with:
59-
node-version: '17.x'
60+
node-version: '18.x'
6061
registry-url: 'https://registry.npmjs.org'
6162
- name: Bump file versions
6263
run: python ./infra/scripts/release/bump_file_versions.py ${CURRENT_VERSION} ${NEXT_VERSION}
@@ -98,7 +99,7 @@ jobs:
9899
- uses: actions/checkout@v2
99100
- uses: actions/setup-node@v2
100101
with:
101-
node-version: '17.x'
102+
node-version: '18.x'
102103
registry-url: 'https://registry.npmjs.org'
103104
- name: Bump file versions (temporarily for Web UI publish)
104105
run: python ./infra/scripts/release/bump_file_versions.py ${CURRENT_VERSION} ${NEXT_VERSION}
@@ -134,7 +135,8 @@ jobs:
134135
- name: Setup Node.js
135136
uses: actions/setup-node@v2
136137
with:
137-
node-version: '16'
138+
node-version: '18.x'
139+
registry-url: 'https://registry.npmjs.org'
138140
- name: Set up Homebrew
139141
id: set-up-homebrew
140142
uses: Homebrew/actions/setup-homebrew@master

0 commit comments

Comments
 (0)