Skip to content

Commit

Permalink
Bump NodeJS to 20.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chadlwilson committed Oct 27, 2023
1 parent d29a875 commit ece9521
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion provision/provision-centos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function provision() {
step install_global_asdf "ruby" "3.2.2"
step install_global_ruby_default_gems

step install_global_asdf "nodejs" "20.8.1"
step install_global_asdf "nodejs" "20.9.0"
step install_yarn

step install_maven "$MAVEN_VERSION"
Expand Down
4 changes: 2 additions & 2 deletions provision/provision-install-packages.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$JAVA_VERSION='17.0.8.10100'
$JAVA_MAJOR_VERSION=$JAVA_VERSION.Split(".")[0]
$NODEJS_VERSION='20.8.1'
$NODEJS_VERSION='20.9.0'
$RUBY_VERSION='3.1.3.1'
$NANT_VERSION='0.92.2-gocd'
$ANT_VERSION='1.10.14'
Expand Down Expand Up @@ -34,7 +34,7 @@ Import-Module "$env:ChocolateyInstall\helpers\chocolateyProfile.psm1"
RefreshEnv

# install packages
choco install --no-progress -y nodejs --version="${NODEJS_VERSION}"
choco install --no-progress -y nodejs-lts --version="${NODEJS_VERSION}"
choco install --no-progress -y temurin${JAVA_MAJOR_VERSION} --version="${JAVA_VERSION}"
choco install --no-progress -y ruby --version="${RUBY_VERSION}"
choco install --no-progress -y nant --version="${NANT_VERSION}" --prerelease --source="$PSScriptroot"
Expand Down
2 changes: 1 addition & 1 deletion provision/provision-ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function provision() {
step install_global_asdf "ruby" "3.2.2"
step install_global_ruby_default_gems

step install_global_asdf "nodejs" "20.8.1"
step install_global_asdf "nodejs" "20.9.0"
step install_yarn

step install_awscli_mimetypes
Expand Down

0 comments on commit ece9521

Please sign in to comment.