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