Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcclauss <cclauss@me.com>2020-10-06 18:51:24 +0300
committergengjiawen <technicalcute@gmail.com>2020-10-09 06:36:15 +0300
commitc8b950a7afcc3e7c222bb94fabccc7e2fb447457 (patch)
tree066a0ff4d9698831c7bb96f5412922e566e05dd1 /.github
parent78f2b11ecd24ecd72930f668e5617116fbe57337 (diff)
build: gitHub actions: Python 3.9 and actions/setup-python@v2
PR-URL: https://github.com/nodejs/node/pull/35521 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Shelley Vohr <codebytere@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Myles Borins <myles.borins@gmail.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/auto-start-ci.yml2
-rw-r--r--.github/workflows/build-tarball.yml8
-rw-r--r--.github/workflows/build-windows.yml4
-rw-r--r--.github/workflows/linters.yml6
-rw-r--r--.github/workflows/test-asan.yml4
-rw-r--r--.github/workflows/test-linux.yml6
-rw-r--r--.github/workflows/test-macos.yml4
7 files changed, 17 insertions, 17 deletions
diff --git a/.github/workflows/auto-start-ci.yml b/.github/workflows/auto-start-ci.yml
index cb9318ab4ad..6ca33927205 100644
--- a/.github/workflows/auto-start-ci.yml
+++ b/.github/workflows/auto-start-ci.yml
@@ -14,7 +14,7 @@ jobs:
if: github.repository == 'nodejs/node'
runs-on: ubuntu-latest
steps:
- - uses: actions/checkout@master
+ - uses: actions/checkout@v2
# Install dependencies
- name: Install jq
diff --git a/.github/workflows/build-tarball.yml b/.github/workflows/build-tarball.yml
index 0caf0bdf961..81f121e2cf2 100644
--- a/.github/workflows/build-tarball.yml
+++ b/.github/workflows/build-tarball.yml
@@ -14,12 +14,12 @@ env:
jobs:
build-tarball:
env:
- PYTHON_VERSION: 3.8
+ PYTHON_VERSION: 3.9
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ env.PYTHON_VERSION }}
- uses: actions/setup-python@v1
+ uses: actions/setup-python@v2
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Environment Information
@@ -39,13 +39,13 @@ jobs:
path: tarballs
test-tarball-linux:
env:
- PYTHON_VERSION: 3.8
+ PYTHON_VERSION: 3.9
needs: build-tarball
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ env.PYTHON_VERSION }}
- uses: actions/setup-python@v1
+ uses: actions/setup-python@v2
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Environment Information
diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml
index a68cc06faf2..2a48e0d0fd4 100644
--- a/.github/workflows/build-windows.yml
+++ b/.github/workflows/build-windows.yml
@@ -10,7 +10,7 @@ on:
- v[0-9]+.x
env:
- PYTHON_VERSION: 3.8
+ PYTHON_VERSION: 3.9
FLAKY_TESTS: dontcare
jobs:
@@ -19,7 +19,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ env.PYTHON_VERSION }}
- uses: actions/setup-python@v1
+ uses: actions/setup-python@v2
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install deps
diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml
index 3cd4def9f98..573057742ce 100644
--- a/.github/workflows/linters.yml
+++ b/.github/workflows/linters.yml
@@ -9,7 +9,7 @@ on:
- v[0-9]+.x
env:
- PYTHON_VERSION: 3.8
+ PYTHON_VERSION: 3.9
NODE_VERSION: 10.x
jobs:
@@ -30,7 +30,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ env.PYTHON_VERSION }}
- uses: actions/setup-python@v1
+ uses: actions/setup-python@v2
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Environment Information
@@ -68,7 +68,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ env.PYTHON_VERSION }}
- uses: actions/setup-python@v1
+ uses: actions/setup-python@v2
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Environment Information
diff --git a/.github/workflows/test-asan.yml b/.github/workflows/test-asan.yml
index 224d18463ac..72b259a8354 100644
--- a/.github/workflows/test-asan.yml
+++ b/.github/workflows/test-asan.yml
@@ -14,7 +14,7 @@ on:
- 'doc/**'
env:
- PYTHON_VERSION: 3.8
+ PYTHON_VERSION: 3.9
FLAKY_TESTS: dontcare
jobs:
@@ -28,7 +28,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ env.PYTHON_VERSION }}
- uses: actions/setup-python@v1
+ uses: actions/setup-python@v2
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Environment Information
diff --git a/.github/workflows/test-linux.yml b/.github/workflows/test-linux.yml
index a5eb2351c3e..967b863f25d 100644
--- a/.github/workflows/test-linux.yml
+++ b/.github/workflows/test-linux.yml
@@ -10,7 +10,7 @@ on:
- v[0-9]+.x
env:
- PYTHON_VERSION: 3.8
+ PYTHON_VERSION: 3.9
FLAKY_TESTS: dontcare
jobs:
@@ -19,7 +19,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ env.PYTHON_VERSION }}
- uses: actions/setup-python@v1
+ uses: actions/setup-python@v2
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Environment Information
@@ -34,7 +34,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ env.PYTHON_VERSION }}
- uses: actions/setup-python@v1
+ uses: actions/setup-python@v2
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Environment Information
diff --git a/.github/workflows/test-macos.yml b/.github/workflows/test-macos.yml
index ba3bb5426da..5c5f2b2a195 100644
--- a/.github/workflows/test-macos.yml
+++ b/.github/workflows/test-macos.yml
@@ -10,7 +10,7 @@ on:
- v[0-9]+.x
env:
- PYTHON_VERSION: 3.8
+ PYTHON_VERSION: 3.9
FLAKY_TESTS: dontcare
jobs:
@@ -19,7 +19,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ env.PYTHON_VERSION }}
- uses: actions/setup-python@v1
+ uses: actions/setup-python@v2
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Environment Information