Skip to content

Commit 50acaf3

Browse files
committed
fix: bump CI dependencies
1 parent 037a5ed commit 50acaf3

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/e2e-ios-macmini.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323
with:
2424
fetch-depth: 1
2525

@@ -90,7 +90,7 @@ jobs:
9090
if: steps.test1.outcome != 'success' && steps.test2.outcome != 'success' && steps.test3.outcome != 'success'
9191
run: yarn e2e:test:ios-release --record-videos all --take-screenshots all --record-logs all --cleanup
9292

93-
- uses: actions/upload-artifact@v3
93+
- uses: actions/upload-artifact@v4
9494
if: failure()
9595
# if: ${{ always() }}
9696
with:

.github/workflows/jest.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
steps:
1313
- name: Check out Git repository
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 1
1717

@@ -27,9 +27,9 @@ jobs:
2727
run: wait-for-it -h 127.0.0.1 -p 60001 -t 60
2828

2929
- name: Set up Node.js
30-
uses: actions/setup-node@v3
30+
uses: actions/setup-node@v4
3131
with:
32-
node-version: 18.17
32+
node-version: 20
3333
cache: 'yarn'
3434

3535
- name: Install Node.js dependencies

.github/workflows/lint-check.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ jobs:
1111

1212
steps:
1313
- name: Check out Git repository
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 1
1717

1818
- name: Set up Node.js
19-
uses: actions/setup-node@v3
19+
uses: actions/setup-node@v4
2020
with:
21-
node-version: 18.17
21+
node-version: 20
2222
cache: 'yarn'
2323

2424
- name: Install Node.js dependencies

.github/workflows/type-check.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ jobs:
1111

1212
steps:
1313
- name: Check out Git repository
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 1
1717

1818
- name: Set up Node.js
19-
uses: actions/setup-node@v3
19+
uses: actions/setup-node@v4
2020
with:
21-
node-version: 18
21+
node-version: 20
2222
cache: 'yarn'
2323

2424
- name: Install Node.js dependencies

0 commit comments

Comments
 (0)