diff --git a/.github/workflows/integration-test-workflow.yml b/.github/workflows/integration-test-workflow.yml index 68f465b..c88ac20 100644 --- a/.github/workflows/integration-test-workflow.yml +++ b/.github/workflows/integration-test-workflow.yml @@ -23,7 +23,7 @@ jobs: run: shell: bash steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 name: Checkout [Pull Request] if: ${{ github.event_name == 'pull_request' }} with: @@ -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@v2 + - uses: actions/checkout@v3 name: Checkout [Default Branch] if: ${{ github.event_name != 'pull_request' }} with: diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 9ae0a8e..6cd3914 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -8,7 +8,7 @@ jobs: publish: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: jameshenry/publish-shell-action@v1 with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9bc9181..1fe5d22 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -21,14 +21,14 @@ jobs: fail-fast: false runs-on: ${{ matrix.runs-on }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 name: Checkout [Pull Request] if: ${{ github.event_name == 'pull_request' }} with: ref: ${{ github.event.pull_request.head.sha }} fetch-depth: 0 - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 name: Checkout [Push] if: ${{ github.event_name != 'pull_request' }} with: