Skip to content

Commit

Permalink
update to node 22, remove extra characters from email
Browse files Browse the repository at this point in the history
  • Loading branch information
DanRod1999 committed Nov 22, 2024
1 parent 1d01292 commit 1fc503f
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/finalize-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
fetch-depth: 0
- name: Set Git Config
run: |
git config --local user.email 38288322+[email protected]
git config --local user.email [email protected]
git config --local user.name imodeljs-admin
- name: Setup node
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/invalidate-open-prs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
fetch-depth: 0
- name: Set Git Config
run: |
git config --local user.email 38288322+[email protected]
git config --local user.email [email protected]
git config --local user.name imodeljs-admin
- name: Run invalidate-status-checks.mjs
run: |
Expand Down
2 changes: 1 addition & 1 deletion common/config/azure-pipelines/jobs/docs-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
- task: UseNode@1
displayName: Use Node 20
inputs:
version: 20.x
version: 22.x
checkLatest: false
- script: |
git config --local user.email [email protected]
Expand Down
14 changes: 7 additions & 7 deletions common/config/azure-pipelines/jobs/version-bump.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
steps:
- checkout: self
- bash: |
git config --local user.email 38288322+[email protected]
git config --local user.email [email protected]
git config --local user.name imodeljs-admin
displayName: Setup Git
Expand Down Expand Up @@ -149,11 +149,11 @@ jobs:
- task: UseNode@1
displayName: Use Node 20.x
inputs:
version: 20.x
version: 22.x
checkLatest: true

- bash: |
git config --local user.email 38288322+[email protected]
git config --local user.email [email protected]
git config --local user.name imodeljs-admin
displayName: Setup Git
Expand Down Expand Up @@ -235,7 +235,7 @@ jobs:
- bash: |
echo Committing version bump $(getVersion.version)...
git commit -m "$(getVersion.version)" --author="imodeljs-admin <38288322+[email protected]>"
git commit -m "$(getVersion.version)" --author="imodeljs-admin <[email protected]>"
displayName: Commit version bump
- ? ${{ if or(eq(parameters.BumpType, 'minor'), eq(parameters.BumpType, 'patch')) }}
Expand All @@ -259,11 +259,11 @@ jobs:
- task: UseNode@1
displayName: "Use Node 20.x"
inputs:
version: 20.x
version: 22.x
checkLatest: true

- bash: |
git config --local user.email 38288322+[email protected]
git config --local user.email [email protected]
git config --local user.name imodeljs-admin
displayName: "Setup Git"
Expand Down Expand Up @@ -313,7 +313,7 @@ jobs:
Write-Host The new version is $newVersion
Write-Host Committing version bump...
git commit -m "$newVersion" --author="imodeljs-admin <38288322+[email protected]>"
git commit -m "$newVersion" --author="imodeljs-admin <[email protected]>"
git status
displayName: Get version and committing
Expand Down
2 changes: 1 addition & 1 deletion common/config/azure-pipelines/valgrind.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- task: UseNode@1
displayName: "Use Node 20.x"
inputs:
version: 20.x
version: 22.x
checkLatest: true

- task: npmAuthenticate@0
Expand Down

0 comments on commit 1fc503f

Please sign in to comment.