Skip to content

Commit

Permalink
fix: use node 18 for github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
pbteja1998 committed Oct 12, 2023
1 parent 6a5dcf2 commit 4c3a67e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '18'
cache: 'yarn'
- name: Install dependencies
uses: bahmutov/npm-install@v1
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v2

- name: Use Node 14
- name: Use Node 18
uses: actions/setup-node@v1
with:
node-version: 14
node-version: 18

- name: Install dependencies
uses: bahmutov/npm-install@v1
Expand All @@ -28,10 +28,10 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v2

- name: Use Node 14
- name: Use Node 18
uses: actions/setup-node@v1
with:
node-version: 14
node-version: 18

- name: Install dependencies
uses: bahmutov/npm-install@v1
Expand All @@ -46,10 +46,10 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v2

- name: Use Node 14
- name: Use Node 18
uses: actions/setup-node@v1
with:
node-version: 14
node-version: 18

- name: Install dependencies
uses: bahmutov/npm-install@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 14
node-version: 18
registry-url: https://registry.npmjs.org/
- run: yarn install
- run: yarn build
Expand Down

0 comments on commit 4c3a67e

Please sign in to comment.