From 9668ac12421023227c887beb2e98e07d5b609be8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 16 Mar 2023 06:44:35 +0000 Subject: [PATCH] chore(deps): update actions/checkout action to v3 --- .github/workflows/chromatic.yml | 2 +- .github/workflows/pages.yml | 2 +- .github/workflows/pull_request.yml | 2 +- .github/workflows/release.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/chromatic.yml b/.github/workflows/chromatic.yml index 870c94ac..d924eab4 100644 --- a/.github/workflows/chromatic.yml +++ b/.github/workflows/chromatic.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest # the list of steps that the action will go through steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 # Required to retrieve git history - run: yarn --pure-lockfile diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index fe7ed9a4..92fa9feb 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -8,7 +8,7 @@ jobs: deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Prepare repository run: git fetch --unshallow --tags diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 9d6e2411..5793b56e 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -10,7 +10,7 @@ jobs: # the operating system it will run on runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Cache node modules uses: actions/cache@v2 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1531c38b..590c1acd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')" # the list of steps that the action will go through steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Prepare repository run: git fetch --unshallow --tags