Skip to content

Commit 598d849

Browse files
authored
Fix setup-node to use v1 (#14611)
Turns out v2 is beta (although v2-beta and v1 have the fix we are after).
1 parent cdc557d commit 598d849

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/insiders.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ jobs:
130130
python-version: ${{matrix.python}}
131131

132132
- name: Use Node ${{env.NODE_VERSION}}
133-
uses: actions/setup-node@v2
133+
uses: actions/setup-node@v1
134134
with:
135135
node-version: ${{env.NODE_VERSION}}
136136

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ jobs:
117117
python-version: ${{matrix.python}}
118118

119119
- name: Use Node ${{env.NODE_VERSION}}
120-
uses: actions/setup-node@v2
120+
uses: actions/setup-node@v1
121121
with:
122122
node-version: ${{env.NODE_VERSION}}
123123

@@ -339,7 +339,7 @@ jobs:
339339
- name: Set CI_PYTHON_PATH and CI_DISABLE_AUTO_SELECTION
340340
run: |
341341
echo "CI_PYTHON_PATH=python" >> $GITHUB_ENV
342-
echo "CI_DISABLE_AUTO_SELECTION=1" >> $GITHUB_ENV
342+
echo "CI_DISABLE_AUTO_SELECTION=1" >> $GITHUB_ENV
343343
shell: bash
344344

345345
- name: Run smoke tests

0 commit comments

Comments
 (0)