Skip to content

Commit

Permalink
Update to actions/setup-node@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
xanderfrangos committed Jan 5, 2024
1 parent 07eae46 commit 9dba140
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@ jobs:
runs-on: windows-2022

steps:
- uses: actions/checkout@v3
- name: Use Node.js 18.x
uses: actions/setup-node@v3
- uses: actions/checkout@v4
- name: Use Node.js 18
uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: 18
cache: 'npm'
- name: package.json info
id: info
uses: jaywcjlove/github-action-package@main
Expand All @@ -35,11 +36,12 @@ jobs:
runs-on: windows-2022

steps:
- uses: actions/checkout@v3
- name: Use Node.js 18.x
uses: actions/setup-node@v3
- uses: actions/checkout@v4
- name: Use Node.js 18
uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: 18
cache: 'npm'
- name: package.json info
id: info
uses: jaywcjlove/github-action-package@main
Expand Down

0 comments on commit 9dba140

Please sign in to comment.