Skip to content

Commit

Permalink
test(ci): bump node to v20
Browse files Browse the repository at this point in the history
so focused on semantic release publish workflow yesterday (which was
set to use `lts/*` as node spec) that I didn't realize pulling
semantic-release dep in bumped minimum acceptable node to 20 and
we were on 18 in most workflows
  • Loading branch information
mikehardy committed Dec 17, 2024
1 parent b23cff9 commit b5d29c0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
submodules: recursive
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
- name: Configure JDK
uses: actions/setup-java@v4
with:
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
submodules: recursive
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
- name: Set workflow variables
id: workflow-variables
run: |
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
submodules: recursive
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
- name: Set workflow variables
id: workflow-variables
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests_e2e_android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20

- name: Set workflow variables
id: workflow-variables
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests_e2e_ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20

- uses: maxim-lobanov/setup-xcode@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests_jest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
submodules: recursive
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
- name: Set workflow variables
id: workflow-variables
run: |
Expand Down

0 comments on commit b5d29c0

Please sign in to comment.