Skip to content

Commit

Permalink
fix: upgrade node version on workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
xpadev-net committed Nov 19, 2024
1 parent f3612a9 commit 22b279c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/playwright-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "20"
node-version: "22"
- name: allow write in work dir
run: sudo chmod -R 777 .
- name: Install Dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "20"
node-version: "22"
- name: allow write in work dir
run: sudo chmod -R 777 .
- name: Install Dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-test-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "20"
node-version: "22"
- name: allow write in work dir
run: sudo chmod -R 777 .
- name: Install Dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-test-playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "20"
node-version: "22"
- name: allow write in work dir
run: sudo chmod -R 777 .
- name: Install Dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-publish-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: '18'
node-version: '22'
registry-url: https://registry.npmjs.org
always-auth: true
scope: '@xpadev-net'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-typedoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: setup Node
uses: actions/setup-node@v3
with:
node-version: 20
node-version: 22
registry-url: "https://registry.npmjs.org"
# Runs a single command using the runners shell
- name: init
Expand Down

0 comments on commit 22b279c

Please sign in to comment.