Skip to content
This repository was archived by the owner on Aug 29, 2023. It is now read-only.

Commit faa2dd8

Browse files
feat: setup-node to use 18 instead of 16
1 parent 5f8741a commit faa2dd8

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

commands/setup-node/action.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
1-
name: 'Set up Nodejs 16.10 and install deps/fetch cache '
1+
name: 'Set up Node.js and install deps/fetch cache'
22

33
runs:
44
using: "composite"
55
steps:
66
- uses: actions/setup-node@v3
7-
with: { node-version: "16" }
8-
- uses: actions/cache@v3
9-
with:
10-
path: 'node_modules'
11-
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
7+
with: { node-version: '18', cache: 'yarn' }
128
- name: Yarn install deps from lockfile
139
shell: bash
1410
run: yarn --frozen-lockfile

0 commit comments

Comments
 (0)