Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/rush-setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ inputs:
node-version:
description: Node.js version to install
required: false
default: "24.15.0"
default: "24.x"

runs:
using: composite
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "24.15.0"
node-version: "24.x"

- name: Configure Git identity
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/finalize-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: "24.15.0"
node-version: "24.x"

- name: Run update-changelogs.mjs
run: |
Expand Down
2 changes: 1 addition & 1 deletion common/config/azure-pipelines/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,4 @@ jobs:
- checkout: self
- template: ./templates/core-build.yaml
parameters:
nodeVersion: 24.15.0
nodeVersion: 24.x
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ jobs:

- template: templates/integration-test-steps.yaml
parameters:
nodeVersion: 24.15.0
nodeVersion: 24.x
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ jobs:

- template: templates/integration-test-steps.yaml
parameters:
nodeVersion: 24.15.0
nodeVersion: 24.x
6 changes: 3 additions & 3 deletions common/config/azure-pipelines/integration-validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ jobs:
Linux_node_24_x:
imageName: ubuntu-latest
poolName:
nodeVersion: 24.15.0
nodeVersion: 24.x
Windows_node_24_x:
imageName: windows-latest
poolName:
nodeVersion: 24.15.0
nodeVersion: 24.x
MacOS_node_24_x:
imageName: macos-latest
poolName: "iModelTechMacArm"
nodeVersion: 24.15.0
nodeVersion: 24.x
pool:
name: $(poolName)
vmImage: $(imageName)
Expand Down
4 changes: 2 additions & 2 deletions common/config/azure-pipelines/jobs/docs-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ jobs:
path: itwinjs-core
clean: true
- task: UseNode@1
displayName: Use Node 24.15.0
displayName: Use Node 24.x
inputs:
version: 24.15.0
version: 24.x
checkLatest: false
- script: |
git config --local user.email imodeljs-admin@users.noreply.github.com
Expand Down
6 changes: 3 additions & 3 deletions common/config/azure-pipelines/jobs/fast-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
persistCredentials: true
- task: UseNode@1
inputs:
version: "24.15.0"
version: "24.x"

- bash: |
if [[ "$(Build.Reason)" == "PullRequest" ]]; then
Expand Down Expand Up @@ -217,12 +217,12 @@ jobs:
retryCountOnTaskFailure: 1
- template: ../templates/core-build.yaml
parameters:
nodeVersion: 24.15.0
nodeVersion: 24.x
buildMobile: true
# Will run if even there is a failure somewhere else in the pipeline.
- template: ../templates/publish-test-results.yaml
parameters:
nodeVersion: 24.15.0
nodeVersion: 24.x
# The publish script identifies any new packages not previously published and tags the build
- template: ../templates/publish.yaml

Expand Down
8 changes: 4 additions & 4 deletions common/config/azure-pipelines/jobs/version-bump.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -193,9 +193,9 @@ jobs:
- checkout: self

- task: UseNode@1
displayName: Use Node 24.15.0
displayName: Use Node 24.x
inputs:
version: 24.15.0
version: 24.x
checkLatest: true

- bash: |
Expand Down Expand Up @@ -490,9 +490,9 @@ jobs:
steps:
- checkout: self
- task: UseNode@1
displayName: "Use Node 24.15.0"
displayName: "Use Node 24.x"
inputs:
version: 24.15.0
version: 24.x
checkLatest: true

- bash: |
Expand Down
4 changes: 2 additions & 2 deletions common/config/azure-pipelines/valgrind.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
clean: true

- task: UseNode@1
displayName: "Use Node 24.15.0"
displayName: "Use Node 24.x"
inputs:
version: 24.15.0
version: 24.x
checkLatest: true

- task: npmAuthenticate@0
Expand Down
Loading