From 1fc503f2f336c6bf8c0995c3923c4bb5942a66ab Mon Sep 17 00:00:00 2001 From: Daniel Rodriguez Date: Fri, 22 Nov 2024 16:54:10 -0500 Subject: [PATCH] update to node 22, remove extra characters from email --- .github/workflows/finalize-release.yaml | 2 +- .github/workflows/invalidate-open-prs.yaml | 2 +- common/config/azure-pipelines/jobs/docs-build.yaml | 2 +- .../config/azure-pipelines/jobs/version-bump.yaml | 14 +++++++------- common/config/azure-pipelines/valgrind.yaml | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/finalize-release.yaml b/.github/workflows/finalize-release.yaml index 86c4baeee12c..9b51fc944b75 100644 --- a/.github/workflows/finalize-release.yaml +++ b/.github/workflows/finalize-release.yaml @@ -25,7 +25,7 @@ jobs: fetch-depth: 0 - name: Set Git Config run: | - git config --local user.email 38288322+imodeljs-admin@users.noreply.github.com + git config --local user.email imodeljs-admin@users.noreply.github.com git config --local user.name imodeljs-admin - name: Setup node diff --git a/.github/workflows/invalidate-open-prs.yaml b/.github/workflows/invalidate-open-prs.yaml index e994720a0a99..9e12b34e6041 100644 --- a/.github/workflows/invalidate-open-prs.yaml +++ b/.github/workflows/invalidate-open-prs.yaml @@ -23,7 +23,7 @@ jobs: fetch-depth: 0 - name: Set Git Config run: | - git config --local user.email 38288322+imodeljs-admin@users.noreply.github.com + git config --local user.email imodeljs-admin@users.noreply.github.com git config --local user.name imodeljs-admin - name: Run invalidate-status-checks.mjs run: | diff --git a/common/config/azure-pipelines/jobs/docs-build.yaml b/common/config/azure-pipelines/jobs/docs-build.yaml index d6a1ce410d77..8b54b825e89f 100644 --- a/common/config/azure-pipelines/jobs/docs-build.yaml +++ b/common/config/azure-pipelines/jobs/docs-build.yaml @@ -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 imodeljs-admin@users.noreply.github.com diff --git a/common/config/azure-pipelines/jobs/version-bump.yaml b/common/config/azure-pipelines/jobs/version-bump.yaml index 6c60ac99255e..f951f6877e0c 100644 --- a/common/config/azure-pipelines/jobs/version-bump.yaml +++ b/common/config/azure-pipelines/jobs/version-bump.yaml @@ -64,7 +64,7 @@ jobs: steps: - checkout: self - bash: | - git config --local user.email 38288322+imodeljs-admin@users.noreply.github.com + git config --local user.email imodeljs-admin@users.noreply.github.com git config --local user.name imodeljs-admin displayName: Setup Git @@ -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+imodeljs-admin@users.noreply.github.com + git config --local user.email imodeljs-admin@users.noreply.github.com git config --local user.name imodeljs-admin displayName: Setup Git @@ -235,7 +235,7 @@ jobs: - bash: | echo Committing version bump $(getVersion.version)... - git commit -m "$(getVersion.version)" --author="imodeljs-admin <38288322+imodeljs-admin@users.noreply.github.com>" + git commit -m "$(getVersion.version)" --author="imodeljs-admin " displayName: Commit version bump - ? ${{ if or(eq(parameters.BumpType, 'minor'), eq(parameters.BumpType, 'patch')) }} @@ -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+imodeljs-admin@users.noreply.github.com + git config --local user.email imodeljs-admin@users.noreply.github.com git config --local user.name imodeljs-admin displayName: "Setup Git" @@ -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+imodeljs-admin@users.noreply.github.com>" + git commit -m "$newVersion" --author="imodeljs-admin " git status displayName: Get version and committing diff --git a/common/config/azure-pipelines/valgrind.yaml b/common/config/azure-pipelines/valgrind.yaml index 3d0e4342caa2..9a1822f32342 100644 --- a/common/config/azure-pipelines/valgrind.yaml +++ b/common/config/azure-pipelines/valgrind.yaml @@ -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