From abbc929335d92bd03eae8980330a8bc6ac0cf7e5 Mon Sep 17 00:00:00 2001 From: Martin Marosi Date: Mon, 29 Jan 2024 11:18:16 +0100 Subject: [PATCH] build: update checkout action --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f445753..0687537 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -24,7 +24,7 @@ jobs: needs: [install] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - uses: './.github/actions/lint' @@ -32,7 +32,7 @@ jobs: runs-on: ubuntu-latest needs: [install] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - uses: './.github/actions/test-unit' @@ -40,7 +40,7 @@ jobs: 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 @@ -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' @@ -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 }}