Skip to content

Commit

Permalink
Use Node v20 for CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
ShawnCZek committed May 17, 2024
1 parent e698180 commit 837f9c1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Node v18
uses: actions/setup-node@v3
- name: Install Node v20
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: npm

- name: Install Dependencies
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Node v18
uses: actions/setup-node@v3
- name: Install Node v20
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: npm
registry-url: https://registry.npmjs.org

Expand Down

0 comments on commit 837f9c1

Please sign in to comment.