diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4564201..97a305a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: uses: actions/checkout@v2 - name: Set Node version to ${{ matrix.node_version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node_version }} cache: 'yarn' @@ -54,7 +54,7 @@ jobs: fetch-depth: 0 - name: Set Node version to 16 - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: 16 cache: 'yarn' diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index bfaee98..224d34c 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/checkout@v2 with: ref: ${{ github.head_ref }} - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v3 with: node-version: ${{ env.node_version }} - run: yarn --frozen-lockfile --ignore-engines diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml index 704d3fe..d37e058 100644 --- a/.github/workflows/prerelease.yml +++ b/.github/workflows/prerelease.yml @@ -16,7 +16,7 @@ jobs: fetch-depth: 0 # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits - name: Set up Node.js 14.x - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: 14.x diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b5af6d9..515f5f6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: fetch-depth: 0 # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits - name: Set up Node.js 14.x - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: 14.x