mirror of https://github.com/nodejs/node.git
build: update Actions versions
PR-URL: https://github.com/nodejs/node/pull/40987 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>pull/41046/head
parent
79731df608
commit
6b202cc383
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue