-
Notifications
You must be signed in to change notification settings - Fork 210
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add setup node to finalize-release.yaml (backport #7409) [release/4.1…
…0.x] (#7419) Co-authored-by: Daniel Rodriguez <[email protected]>
- Loading branch information
1 parent
daf5b1d
commit c068a73
Showing
3 changed files
with
9 additions
and
3 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,15 +21,15 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout branch | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3 | ||
|
||
- name: Configure git | ||
run: | | ||
git config --local user.email [email protected] | ||
git config --local user.name imodeljs-admin | ||
- name: Setup node | ||
uses: actions/setup-node@v2 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: "18" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,12 @@ jobs: | |
run: | | ||
git config --local user.email [email protected] | ||
git config --local user.name imodeljs-admin | ||
- name: Setup node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: "22" | ||
|
||
- name: Run update-changelogs.mjs | ||
run: | | ||
sudo npm install -g @microsoft/rush | ||
|