From 76616ce7eec04c91af517e64c84b47d1468fde1c Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Wed, 4 Nov 2020 11:53:25 -0800 Subject: [PATCH] Fix setup-node to use v1 Turns out v2 is beta (although v2-beta and v1 have the fix we are after). --- .github/workflows/insiders.yml | 2 +- .github/workflows/release.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/insiders.yml b/.github/workflows/insiders.yml index 6c39efd36ae8..e12277b56122 100644 --- a/.github/workflows/insiders.yml +++ b/.github/workflows/insiders.yml @@ -130,7 +130,7 @@ jobs: python-version: ${{matrix.python}} - name: Use Node ${{env.NODE_VERSION}} - uses: actions/setup-node@v2 + uses: actions/setup-node@v1 with: node-version: ${{env.NODE_VERSION}} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 26d530d064e8..ef610b330d21 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -117,7 +117,7 @@ jobs: python-version: ${{matrix.python}} - name: Use Node ${{env.NODE_VERSION}} - uses: actions/setup-node@v2 + uses: actions/setup-node@v1 with: node-version: ${{env.NODE_VERSION}} @@ -339,7 +339,7 @@ jobs: - name: Set CI_PYTHON_PATH and CI_DISABLE_AUTO_SELECTION run: | echo "CI_PYTHON_PATH=python" >> $GITHUB_ENV - echo "CI_DISABLE_AUTO_SELECTION=1" >> $GITHUB_ENV + echo "CI_DISABLE_AUTO_SELECTION=1" >> $GITHUB_ENV shell: bash - name: Run smoke tests