Skip to content

Commit

Permalink
fix: bump CI dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
limpbrains committed Jun 14, 2024
1 parent 8a53858 commit 6b94f2c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/e2e-ios-macmini.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1

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

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: failure()
# if: ${{ always() }}
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/jest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Check out Git repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1

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

- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18.17
node-version: 20
cache: 'yarn'

- name: Install Node.js dependencies
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lint-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:

steps:
- name: Check out Git repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1

- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18.17
node-version: 20
cache: 'yarn'

- name: Install Node.js dependencies
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/type-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:

steps:
- name: Check out Git repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1

- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: 'yarn'

- name: Install Node.js dependencies
Expand Down

0 comments on commit 6b94f2c

Please sign in to comment.