Skip to content

Commit

Permalink
ci: bump actions/setup-node to v3
Browse files Browse the repository at this point in the history
Hoping this improves performance
  • Loading branch information
chrisvxd committed Sep 22, 2023
1 parent cdaaaed commit 66b3dad
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,9 @@ jobs:
uses: actions/[email protected]

- name: Setup Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: "18.16.1"
registry-url: "https://registry.npmjs.org"
node-version: 18

- name: Check Yarn Version
run: yarn --version
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/publish-canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,9 @@ jobs:
fetch-depth: 0

- name: Setup Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: "18.16.1"
registry-url: "https://registry.npmjs.org"
node-version: 18

- name: Install dependencies
run: yarn
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,9 @@ jobs:
tag: ${{ env.TAG_NAME }}

- name: Setup Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: "18.16.1"
registry-url: "https://registry.npmjs.org"
node-version: 18

- name: Install dependencies
run: yarn
Expand Down

0 comments on commit 66b3dad

Please sign in to comment.