diff --git a/.github/workflows/build-tarball.yml b/.github/workflows/build-tarball.yml index bebe414216f571..c054d76d1d7953 100644 --- a/.github/workflows/build-tarball.yml +++ b/.github/workflows/build-tarball.yml @@ -48,7 +48,7 @@ jobs: mkdir tarballs mv *.tar.gz tarballs - name: Upload tarball artifact - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v2 with: name: tarballs path: tarballs @@ -68,9 +68,10 @@ jobs: - name: Environment Information run: npx envinfo - name: Download tarball - uses: actions/download-artifact@v1 + uses: actions/download-artifact@v2 with: name: tarballs + path: tarballs - name: Extract tarball run: | tar xzf tarballs/*.tar.gz -C $RUNNER_TEMP diff --git a/.github/workflows/close-stalled.yml b/.github/workflows/close-stalled.yml index 351ddb78c012f8..1b2fc2b7a6fd7e 100644 --- a/.github/workflows/close-stalled.yml +++ b/.github/workflows/close-stalled.yml @@ -8,7 +8,7 @@ jobs: if: github.repository == 'nodejs/node' runs-on: ubuntu-latest steps: - - uses: actions/stale@v3 + - uses: actions/stale@v4 with: repo-token: ${{ secrets.GITHUB_TOKEN }} days-before-close: 30 diff --git a/.github/workflows/misc.yml b/.github/workflows/misc.yml index bcf3915059e536..7cfe2fdaa6dbd7 100644 --- a/.github/workflows/misc.yml +++ b/.github/workflows/misc.yml @@ -29,7 +29,7 @@ jobs: run: npx envinfo - name: Build run: NODE=$(command -v node) make doc-only - - uses: actions/upload-artifact@v1 + - uses: actions/upload-artifact@v2 with: name: docs path: out/doc