Skip to content

Commit 0712662

Browse files
authored
feat: update dependencies and increase minimum node version to v18 (#106)
1 parent 92760f2 commit 0712662

7 files changed

Lines changed: 24928 additions & 2621 deletions

File tree

.github/workflows/integration-test-workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
run:
2424
shell: bash
2525
steps:
26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2727
name: Checkout [Pull Request]
2828
if: ${{ github.event_name == 'pull_request' }}
2929
with:
@@ -32,7 +32,7 @@ jobs:
3232
# We need to fetch all branches and commits so that Nx affected has a base to compare against.
3333
fetch-depth: 0
3434

35-
- uses: actions/checkout@v3
35+
- uses: actions/checkout@v4
3636
name: Checkout [Default Branch]
3737
if: ${{ github.event_name != 'pull_request' }}
3838
with:

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
publish:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v4
1212

1313
- uses: jameshenry/publish-shell-action@v1
1414
with:

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,23 +21,23 @@ jobs:
2121
fail-fast: false
2222
runs-on: ${{ matrix.runs-on }}
2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525
name: Checkout [Pull Request]
2626
if: ${{ github.event_name == 'pull_request' }}
2727
with:
2828
ref: ${{ github.event.pull_request.head.sha }}
2929
fetch-depth: 0
3030

31-
- uses: actions/checkout@v3
31+
- uses: actions/checkout@v4
3232
name: Checkout [Push]
3333
if: ${{ github.event_name != 'pull_request' }}
3434
with:
3535
fetch-depth: 0
3636

37-
- name: Set Node.js 16.x
37+
- name: Set Node.js 18.x
3838
uses: actions/setup-node@v3
3939
with:
40-
node-version: 16
40+
node-version: 18
4141

4242
- name: Install
4343
run: yarn --frozen-lockfile

0 commit comments

Comments
 (0)