From 51180c56ee0438e4817fe19c9dc81cacd4c8cc8a Mon Sep 17 00:00:00 2001 From: Wing-Kam Wong Date: Fri, 14 Oct 2022 19:21:05 +0800 Subject: [PATCH] feat(workflows): upgrade actions to use node 16 --- .github/workflows/ci-cd.yml | 156 ++++++++++---------- .github/workflows/docker-readme-publish.yml | 2 +- .github/workflows/pr-to-master.yml | 2 +- .github/workflows/publish-api-docs.yml | 2 +- .github/workflows/publish-blog.yml | 2 +- .github/workflows/publish-dev-docs.yml | 2 +- .github/workflows/publish-docs.yml | 2 +- .github/workflows/publish-noco-i18n.yml | 2 +- .github/workflows/publish-prev-docs.yml | 2 +- .github/workflows/release-docker.yml | 4 +- .github/workflows/release-draft.yml | 2 +- .github/workflows/release-npm.yml | 2 +- .github/workflows/update-sdk-path.yml | 4 +- 13 files changed, 92 insertions(+), 92 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 3f8b181aba..e16b30bf19 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -31,15 +31,15 @@ jobs: if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'trigger-CI') || !github.event.pull_request.draft }} steps: - name: Setup Node - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: 16.15.0 - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Cache node modules - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: cache-node-modules @@ -54,7 +54,7 @@ jobs: - name: Set env run: echo "NODE_ENV=test" >> $GITHUB_ENV - name: Cypress run - uses: cypress-io/github-action@v2 + uses: cypress-io/github-action@v4 with: start: | npm run start:api:cache @@ -66,7 +66,7 @@ jobs: config-file: scripts/cypress/cypress.json - name: Upload screenshots if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: cypress-restTableOps-run-cache-snapshots path: scripts/cypress/screenshots @@ -77,15 +77,15 @@ jobs: if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'trigger-CI') || !github.event.pull_request.draft }} steps: - name: Setup Node - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: 16.15.0 - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Cache node modules - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: cache-node-modules @@ -100,7 +100,7 @@ jobs: - name: Set env run: echo "NODE_ENV=test" >> $GITHUB_ENV - name: Cypress run - uses: cypress-io/github-action@v2 + uses: cypress-io/github-action@v4 with: start: | npm run start:api:cache @@ -112,7 +112,7 @@ jobs: config-file: scripts/cypress/cypress.json - name: Upload screenshots if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: cypress-restViews-run-cache-snapshots path: scripts/cypress/screenshots @@ -123,15 +123,15 @@ jobs: if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'trigger-CI') || !github.event.pull_request.draft }} steps: - name: Setup Node - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: 16.15.0 - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Cache node modules - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: cache-node-modules @@ -146,7 +146,7 @@ jobs: - name: Set env run: echo "NODE_ENV=test" >> $GITHUB_ENV - name: Cypress run - uses: cypress-io/github-action@v2 + uses: cypress-io/github-action@v4 with: start: | npm run start:api:cache @@ -158,7 +158,7 @@ jobs: config-file: scripts/cypress/cypress.json - name: Upload screenshots if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: cypress-restRoles-run-cache-snapshots path: scripts/cypress/screenshots @@ -169,15 +169,15 @@ jobs: if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'trigger-CI') || !github.event.pull_request.draft }} steps: - name: Setup Node - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: 16.15.0 - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Cache node modules - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: cache-node-modules @@ -192,7 +192,7 @@ jobs: - name: Set env run: echo "NODE_ENV=test" >> $GITHUB_ENV - name: Cypress run - uses: cypress-io/github-action@v2 + uses: cypress-io/github-action@v4 with: start: | npm run start:api:cache @@ -204,7 +204,7 @@ jobs: config-file: scripts/cypress/cypress.json - name: Upload screenshots if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: cypress-restMisc-run-cache-snapshots path: scripts/cypress/screenshots @@ -215,15 +215,15 @@ jobs: if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'trigger-CI') || !github.event.pull_request.draft }} steps: - name: Setup Node - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: 16.15.0 - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Cache node modules - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: cache-node-modules @@ -238,7 +238,7 @@ jobs: - name: Set env run: echo "NODE_ENV=test" >> $GITHUB_ENV - name: Cypress run - uses: cypress-io/github-action@v2 + uses: cypress-io/github-action@v4 with: start: | npm run start:xcdb-api:cache @@ -250,7 +250,7 @@ jobs: config-file: scripts/cypress/cypress.json - name: Upload screenshots if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: cypress-xcdb-restTableOps-run-cache-snapshots path: scripts/cypress/screenshots @@ -261,15 +261,15 @@ jobs: if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'trigger-CI') || !github.event.pull_request.draft }} steps: - name: Setup Node - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: 16.15.0 - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Cache node modules - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: cache-node-modules @@ -284,7 +284,7 @@ jobs: - name: Set env run: echo "NODE_ENV=test" >> $GITHUB_ENV - name: Cypress run - uses: cypress-io/github-action@v2 + uses: cypress-io/github-action@v4 with: start: | npm run start:xcdb-api:cache @@ -296,7 +296,7 @@ jobs: config-file: scripts/cypress/cypress.json - name: Upload screenshots if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: cypress-xcdb-restViews-run-cache-snapshots path: scripts/cypress/screenshots @@ -307,15 +307,15 @@ jobs: if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'trigger-CI') || !github.event.pull_request.draft }} steps: - name: Setup Node - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: 16.15.0 - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Cache node modules - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: cache-node-modules @@ -330,7 +330,7 @@ jobs: - name: Set env run: echo "NODE_ENV=test" >> $GITHUB_ENV - name: Cypress run - uses: cypress-io/github-action@v2 + uses: cypress-io/github-action@v4 with: start: | npm run start:xcdb-api:cache @@ -342,7 +342,7 @@ jobs: config-file: scripts/cypress/cypress.json - name: Upload screenshots if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: cypress-xcdb-restRoles-run-cache-snapshots path: scripts/cypress/screenshots @@ -353,15 +353,15 @@ jobs: if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'trigger-CI') || !github.event.pull_request.draft }} steps: - name: Setup Node - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: 16.15.0 - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Cache node modules - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: cache-node-modules @@ -376,7 +376,7 @@ jobs: - name: Set env run: echo "NODE_ENV=test" >> $GITHUB_ENV - name: Cypress run - uses: cypress-io/github-action@v2 + uses: cypress-io/github-action@v4 with: start: | npm run start:xcdb-api:cache @@ -388,7 +388,7 @@ jobs: config-file: scripts/cypress/cypress.json - name: Upload screenshots if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: cypress-xcdb-restMisc-run-cache-snapshots path: scripts/cypress/screenshots @@ -399,15 +399,15 @@ jobs: if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'trigger-CI') || !github.event.pull_request.draft }} steps: - name: Setup Node - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: 16.15.0 - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Cache node modules - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: cache-node-modules @@ -422,7 +422,7 @@ jobs: - name: Set env run: echo "NODE_ENV=test" >> $GITHUB_ENV - name: Cypress run - uses: cypress-io/github-action@v2 + uses: cypress-io/github-action@v4 with: start: | npm run start:api:cache @@ -434,7 +434,7 @@ jobs: config-file: scripts/cypress/cypress.json - name: Upload screenshots if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: cypress-pg-restTableOps-run-cache-snapshots path: scripts/cypress/screenshots @@ -445,15 +445,15 @@ jobs: if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'trigger-CI') || !github.event.pull_request.draft }} steps: - name: Setup Node - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: 16.15.0 - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Cache node modules - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: cache-node-modules @@ -468,7 +468,7 @@ jobs: - name: Set env run: echo "NODE_ENV=test" >> $GITHUB_ENV - name: Cypress run - uses: cypress-io/github-action@v2 + uses: cypress-io/github-action@v4 with: start: | npm run start:api:cache @@ -480,7 +480,7 @@ jobs: config-file: scripts/cypress/cypress.json - name: Upload screenshots if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: cypress-pg-restViews-run-cache-snapshots path: scripts/cypress/screenshots @@ -491,15 +491,15 @@ jobs: if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'trigger-CI') || !github.event.pull_request.draft }} steps: - name: Setup Node - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: 16.15.0 - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Cache node modules - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: cache-node-modules @@ -514,7 +514,7 @@ jobs: - name: Set env run: echo "NODE_ENV=test" >> $GITHUB_ENV - name: Cypress run - uses: cypress-io/github-action@v2 + uses: cypress-io/github-action@v4 with: start: | npm run start:api:cache @@ -526,7 +526,7 @@ jobs: config-file: scripts/cypress/cypress.json - name: Upload screenshots if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: cypress-pg-restRoles-run-cache-snapshots path: scripts/cypress/screenshots @@ -537,15 +537,15 @@ jobs: if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'trigger-CI') || !github.event.pull_request.draft }} steps: - name: Setup Node - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: 16.15.0 - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Cache node modules - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: cache-node-modules @@ -560,7 +560,7 @@ jobs: - name: Set env run: echo "NODE_ENV=test" >> $GITHUB_ENV - name: Cypress run - uses: cypress-io/github-action@v2 + uses: cypress-io/github-action@v4 with: start: | npm run start:api:cache @@ -572,7 +572,7 @@ jobs: config-file: scripts/cypress/cypress.json - name: Upload screenshots if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: cypress-pg-restMisc-run-cache-snapshots path: scripts/cypress/screenshots @@ -583,15 +583,15 @@ jobs: if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'trigger-CI') || !github.event.pull_request.draft }} steps: - name: Setup Node - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: 16.15.0 - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Cache node modules - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: cache-node-modules @@ -606,7 +606,7 @@ jobs: - name: Set env run: echo "NODE_ENV=test" >> $GITHUB_ENV - name: Cypress run - uses: cypress-io/github-action@v2 + uses: cypress-io/github-action@v4 with: start: | cp ./scripts/cypress/fixtures/quickTest/noco_0_91_7.db ./packages/nocodb/noco.db @@ -619,7 +619,7 @@ jobs: config-file: scripts/cypress/cypress.json - name: Upload screenshots if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: cy-quick-sqlite-snapshots path: scripts/cypress/screenshots @@ -630,15 +630,15 @@ jobs: if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'trigger-CI') || !github.event.pull_request.draft }} steps: - name: Setup Node - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: 16.15.0 - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Cache node modules - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: cache-node-modules @@ -653,7 +653,7 @@ jobs: - name: Set env run: echo "NODE_ENV=test" >> $GITHUB_ENV - name: Cypress run - uses: cypress-io/github-action@v2 + uses: cypress-io/github-action@v4 with: start: | docker-compose -f ./scripts/cypress/docker-compose-pg-cy-quick.yml up -d @@ -665,7 +665,7 @@ jobs: config-file: scripts/cypress/cypress.json - name: Upload screenshots if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: cy-quick-pg-snapshots path: scripts/cypress/screenshots @@ -676,15 +676,15 @@ jobs: if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'trigger-CI') || !github.event.pull_request.draft }} steps: - name: Setup Node - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: 16.15.0 - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Cache node modules - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: cache-node-modules @@ -717,15 +717,15 @@ jobs: if: ${{ github.event_name == 'push' || contains(github.event.pull_request.labels.*.name, 'trigger-CI') || !github.event.pull_request.draft }} steps: - name: Setup Node - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: 16.15.0 - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: Cache node modules - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: cache-node-modules @@ -740,7 +740,7 @@ jobs: - name: Set env run: echo "NODE_ENV=test" >> $GITHUB_ENV - name: Cypress run - uses: cypress-io/github-action@v2 + uses: cypress-io/github-action@v4 with: start: | npm run start:api:cache @@ -752,7 +752,7 @@ jobs: config-file: scripts/cypress/cypress.json - name: Upload screenshots if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: cypress-restMisc-run-cache-snapshots path: scripts/cypress/screenshots diff --git a/.github/workflows/docker-readme-publish.yml b/.github/workflows/docker-readme-publish.yml index 6ccaf7012a..d829471ef1 100644 --- a/.github/workflows/docker-readme-publish.yml +++ b/.github/workflows/docker-readme-publish.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Docker Hub Description uses: peter-evans/dockerhub-description@v2 with: diff --git a/.github/workflows/pr-to-master.yml b/.github/workflows/pr-to-master.yml index e89a3b9739..a4eef87b54 100644 --- a/.github/workflows/pr-to-master.yml +++ b/.github/workflows/pr-to-master.yml @@ -33,7 +33,7 @@ jobs: - run: | echo 'triggering pr-to-master' - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: ref: develop diff --git a/.github/workflows/publish-api-docs.yml b/.github/workflows/publish-api-docs.yml index 7a47d99578..e54cd12976 100644 --- a/.github/workflows/publish-api-docs.yml +++ b/.github/workflows/publish-api-docs.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 diff --git a/.github/workflows/publish-blog.yml b/.github/workflows/publish-blog.yml index 00f770b97b..e9a3a8ea53 100644 --- a/.github/workflows/publish-blog.yml +++ b/.github/workflows/publish-blog.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 diff --git a/.github/workflows/publish-dev-docs.yml b/.github/workflows/publish-dev-docs.yml index 3d4fd18df6..50e95fef4f 100644 --- a/.github/workflows/publish-dev-docs.yml +++ b/.github/workflows/publish-dev-docs.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - uses: actions/setup-node@v2 diff --git a/.github/workflows/publish-docs.yml b/.github/workflows/publish-docs.yml index 7fa5704c6c..88e30eb82c 100644 --- a/.github/workflows/publish-docs.yml +++ b/.github/workflows/publish-docs.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - uses: actions/setup-node@v2 diff --git a/.github/workflows/publish-noco-i18n.yml b/.github/workflows/publish-noco-i18n.yml index 012b93512a..9006e37030 100644 --- a/.github/workflows/publish-noco-i18n.yml +++ b/.github/workflows/publish-noco-i18n.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 diff --git a/.github/workflows/publish-prev-docs.yml b/.github/workflows/publish-prev-docs.yml index 55be9b93a7..b1efefd333 100644 --- a/.github/workflows/publish-prev-docs.yml +++ b/.github/workflows/publish-prev-docs.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - uses: actions/setup-node@v2 diff --git a/.github/workflows/release-docker.yml b/.github/workflows/release-docker.yml index ef75ea1773..e7f66a8504 100644 --- a/.github/workflows/release-docker.yml +++ b/.github/workflows/release-docker.yml @@ -66,7 +66,7 @@ jobs: echo ${DOCKER_BUILD_TAG} - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 ref: ${{ github.ref }} @@ -110,7 +110,7 @@ jobs: uses: docker/setup-buildx-action@v1 - name: Cache Docker layers - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ github.sha }} diff --git a/.github/workflows/release-draft.yml b/.github/workflows/release-draft.yml index dbcb3c9744..bd98237ef0 100644 --- a/.github/workflows/release-draft.yml +++ b/.github/workflows/release-draft.yml @@ -39,7 +39,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 ref: ${{ github.ref }} diff --git a/.github/workflows/release-npm.yml b/.github/workflows/release-npm.yml index bf9ebdd2e0..3a1e1d3b9d 100644 --- a/.github/workflows/release-npm.yml +++ b/.github/workflows/release-npm.yml @@ -38,7 +38,7 @@ jobs: working-directory: ./packages/nocodb steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 ref: ${{ github.ref }} diff --git a/.github/workflows/update-sdk-path.yml b/.github/workflows/update-sdk-path.yml index 19acb7cc47..fed2a4e22e 100644 --- a/.github/workflows/update-sdk-path.yml +++ b/.github/workflows/update-sdk-path.yml @@ -10,11 +10,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Setup Node - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: 16.15.0 - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0