Skip to content

Commit

Permalink
build: update checkout action
Browse files Browse the repository at this point in the history
  • Loading branch information
Hyperkid123 committed Jan 29, 2024
1 parent 1e2b1c0 commit abbc929
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: nrwl/nx-set-shas@v3
Expand All @@ -24,23 +24,23 @@ jobs:
needs: [install]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: './.github/actions/lint'
test:
runs-on: ubuntu-latest
needs: [install]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: './.github/actions/test-unit'
build:
runs-on: ubuntu-latest
needs: [install]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: nrwl/nx-set-shas@v3
Expand All @@ -53,7 +53,7 @@ jobs:
runs-on: ubuntu-latest
needs: [install, build]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: './.github/actions/test-e2e'
Expand All @@ -62,7 +62,7 @@ jobs:
needs: [install, lint, test, build, test-e2e]
if: github.event_name != 'pull_request'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
ssh-key: ${{ secrets.BOTH_AUTH_KEY }}
Expand Down

0 comments on commit abbc929

Please sign in to comment.