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/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "18.20.3"
node-version: "22.22.0"
cache: "npm"
cache-dependency-path: |
ui/ui-frontend/package-lock.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/i18n-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "18.20.3"
node-version: "22.22.0"
- name: Run i18n comparison script
working-directory: tools
run: node check-i18n.js
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18.20.3'
node-version: "22.22.0"
- name: Check missing icon in icomoon
run: ./tools/check_icomoon.sh
# Only install prettier globally (with same version as in package.json)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-design-system.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "18.20.3"
node-version: "22.22.0"
cache: "npm"
cache-dependency-path: |
ui/ui-frontend/package-lock.json
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ pipeline {
sh 'sudo apt install -y build-essential make ruby ruby-dev rubygems jq'
sh 'sudo timedatectl set-timezone Europe/Paris'
sh 'sudo gem install fpm'
nvm('v18.20.3') { // We're installing correct Node version through NVM then update the path to make it available. Do NOT wrap your code in `nvm('...') {}` as it would override the whole PATH and then break tools (jdk, maven) configurations
nvm('v22.22.0') { // We're installing correct Node version through NVM then update the path to make it available. Do NOT wrap your code in `nvm('...') {}` as it would override the whole PATH and then break tools (jdk, maven) configurations
script {
nvmPath = sh(script: 'dirname $(which node)', returnStdout: true).trim()
env.PATH = "${nvmPath}:${env.PATH}"
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@
<vitam.version>9.1.0-SNAPSHOT</vitam.version>

<!-- Web Pack -->
<node.version>v18.20.3</node.version>
<npm.version>10.7.0</npm.version>
<node.version>v22.22.0</node.version>
<npm.version>10.9.4</npm.version>

<!--Spring dependencies version override-->
<!--Snakeyaml version override to 2.x to fix CVE-2022-1471-->
Expand Down
Loading
Loading