From bad6ebd596f244f9ce9c0aef47631b9824241935 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Jona=C5=A1?= Date: Thu, 27 Oct 2022 17:23:01 +0200 Subject: [PATCH] chore: update workflows to use latest actions (#76) --- .github/workflows/integration-test-workflow.yml | 4 ++-- .github/workflows/publish.yml | 2 +- .github/workflows/test.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) 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: