Skip to content

Commit 0f3186e

Browse files
chore(repo): bump node version in the release script (#226)
1 parent 4f0711a commit 0f3186e

File tree

3 files changed

+1
-11
lines changed

3 files changed

+1
-11
lines changed

.github/actions/setup/action.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,6 @@ name: setup
22

33
description: Setup Node, cache and install deps
44

5-
inputs:
6-
node_version:
7-
description: Node Version
8-
required: false
9-
default: '16'
10-
115
runs:
126
using: composite
137
steps:
@@ -30,7 +24,7 @@ runs:
3024
- name: Use Node
3125
uses: actions/setup-node@v3
3226
with:
33-
node-version: ${{ inputs.node_version }}
27+
node-version: 18
3428
# This doesn't just set the registry url, but also sets
3529
# the right configuration in .npmrc that reads NPM token
3630
# from NPM_AUTH_TOKEN environment variable.

.github/workflows/release.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ jobs:
3232
fetch-depth: 0
3333
- name: Setup
3434
uses: ./.github/actions/setup
35-
with:
36-
node_version: 18
3735

3836
- name: Test
3937
uses: ./.github/actions/test

.github/workflows/test.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ jobs:
2222
- uses: actions/checkout@v3
2323
- name: Setup
2424
uses: ./.github/actions/setup
25-
with:
26-
node_version: 18
2725

2826
- name: Test
2927
uses: ./.github/actions/test

0 commit comments

Comments
 (0)