From 9162ac9d37b728264c665811ad0aa698e843157e Mon Sep 17 00:00:00 2001 From: Frazer Smith Date: Fri, 13 May 2022 07:40:39 +0100 Subject: [PATCH] Update: bump actions/checkout from 2 to 3 --- .github/workflows/ci-build.yml | 10 +++++----- .github/workflows/commit-checker.yml | 2 +- .github/workflows/preview_build.yml | 2 +- .github/workflows/release.yml | 6 +++--- .github/workflows/unused-strings.yml | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 308e6f4ada..db4f1a3571 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -20,7 +20,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup cache uses: actions/cache@v3 @@ -91,7 +91,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Install dependencies run: | @@ -166,7 +166,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Prepare cache key id: key @@ -244,7 +244,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Prepare cache key id: key @@ -338,7 +338,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup MSYS2 uses: msys2/setup-msys2@v2 diff --git a/.github/workflows/commit-checker.yml b/.github/workflows/commit-checker.yml index acf622a87e..91fc54b104 100644 --- a/.github/workflows/commit-checker.yml +++ b/.github/workflows/commit-checker.yml @@ -10,7 +10,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 4 diff --git a/.github/workflows/preview_build.yml b/.github/workflows/preview_build.yml index 1fac876ddc..d2935cefbc 100644 --- a/.github/workflows/preview_build.yml +++ b/.github/workflows/preview_build.yml @@ -31,7 +31,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.PREVIEW_GITHUB_TOKEN }} - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: ref: ${{ github.event.client_payload.sha }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1fc61b1da3..07b3ad61f1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,14 +29,14 @@ jobs: steps: - name: Checkout (Release) if: github.event_name == 'release' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: # We generate a changelog; for this we need the full git log. fetch-depth: 0 - name: Checkout (Manual) if: github.event_name == 'workflow_dispatch' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: ref: ${{ github.event.inputs.ref }} # We generate a changelog; for this we need the full git log. @@ -44,7 +44,7 @@ jobs: - name: Checkout (Trigger) if: github.event_name == 'repository_dispatch' - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: ref: ${{ github.event.client_payload.ref }} # We generate a changelog; for this we need the full git log. diff --git a/.github/workflows/unused-strings.yml b/.github/workflows/unused-strings.yml index d63da91c30..6026671307 100644 --- a/.github/workflows/unused-strings.yml +++ b/.github/workflows/unused-strings.yml @@ -10,7 +10,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Check for unused strings run: |