3636 - name : Setup Node.js
3737 uses : actions/setup-node@v3
3838 with :
39- node-version : ' 18.x'
40- registry-url : ' https://registry.npmjs.org'
39+ node-version : " lts/*"
4140 - name : Release (Dry Run)
4241 id : get_versions
4342 run : |
@@ -60,10 +59,10 @@ jobs:
6059 NEXT_VERSION : ${{ needs.get_dry_release_versions.outputs.next_version }}
6160 steps :
6261 - uses : actions/checkout@v3
63- - uses : actions/setup-node@v3
62+ - name : Setup Node.js
63+ uses : actions/setup-node@v3
6464 with :
65- node-version : ' 18.x'
66- registry-url : ' https://registry.npmjs.org'
65+ node-version : " lts/*"
6766 - name : Bump file versions
6867 run : python ./infra/scripts/release/bump_file_versions.py ${CURRENT_VERSION} ${NEXT_VERSION}
6968 - name : Install yarn dependencies
@@ -101,10 +100,10 @@ jobs:
101100 NEXT_VERSION : ${{ needs.get_dry_release_versions.outputs.next_version }}
102101 steps :
103102 - uses : actions/checkout@v3
104- - uses : actions/setup-node@v3
103+ - name : Setup Node.js
104+ uses : actions/setup-node@v3
105105 with :
106- node-version : ' 18.x'
107- registry-url : ' https://registry.npmjs.org'
106+ node-version : " lts/*"
108107 - name : Bump file versions (temporarily for Web UI publish)
109108 run : python ./infra/scripts/release/bump_file_versions.py ${CURRENT_VERSION} ${NEXT_VERSION}
110109 - name : Install yarn dependencies
@@ -139,8 +138,7 @@ jobs:
139138 - name : Setup Node.js
140139 uses : actions/setup-node@v3
141140 with :
142- node-version : ' 18.x'
143- registry-url : ' https://registry.npmjs.org'
141+ node-version : " lts/*"
144142 - name : Set up Homebrew
145143 id : set-up-homebrew
146144 uses : Homebrew/actions/setup-homebrew@master
0 commit comments