Skip to content

Commit

Permalink
feat: update dependencies and increase minimum node version to v18 (#106
Browse files Browse the repository at this point in the history
)
  • Loading branch information
meeroslav authored Sep 7, 2023
1 parent 92760f2 commit 0712662
Show file tree
Hide file tree
Showing 7 changed files with 24,928 additions and 2,621 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integration-test-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run:
shell: bash
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
name: Checkout [Pull Request]
if: ${{ github.event_name == 'pull_request' }}
with:
Expand All @@ -32,7 +32,7 @@ jobs:
# We need to fetch all branches and commits so that Nx affected has a base to compare against.
fetch-depth: 0

- uses: actions/checkout@v3
- uses: actions/checkout@v4
name: Checkout [Default Branch]
if: ${{ github.event_name != 'pull_request' }}
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: jameshenry/publish-shell-action@v1
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,23 +21,23 @@ jobs:
fail-fast: false
runs-on: ${{ matrix.runs-on }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
name: Checkout [Pull Request]
if: ${{ github.event_name == 'pull_request' }}
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0

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

- name: Set Node.js 16.x
- name: Set Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18

- name: Install
run: yarn --frozen-lockfile
Expand Down
Loading

0 comments on commit 0712662

Please sign in to comment.