Skip to content

Commit d0d66ed

Browse files
committed
ci: use node version 16.15.1 for windows jobs
1 parent db59c1e commit d0d66ed

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/choco-install.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ if ( $null -eq $env:ChocolateyInstall ) {
2323
New-Item -Path "${PSScriptRoot}\..\tmp\chocolatey" -ItemType "directory" -ErrorAction:SilentlyContinue
2424
choco source add --name="cache" --source="${PSScriptRoot}\..\tmp\chocolatey" --priority=1
2525

26-
# Install nodejs v16.14.2 (will use cache if exists)
26+
# Install nodejs v16.15.1 (will use cache if exists)
2727
$nodejs = "nodejs.install"
28-
choco install "$nodejs" --version="16.14.2" --require-checksums -y
28+
choco install "$nodejs" --version="16.15.1" --require-checksums -y
2929
# Internalise nodejs to cache if doesn't exist
30-
if ( -not (Test-Path -Path "${PSScriptRoot}\..\tmp\chocolatey\$nodejs\$nodejs.16.14.2.nupkg" -PathType Leaf) ) {
30+
if ( -not (Test-Path -Path "${PSScriptRoot}\..\tmp\chocolatey\$nodejs\$nodejs.16.15.1.nupkg" -PathType Leaf) ) {
3131
Save-ChocoPackage -PackageName $nodejs
3232
}

0 commit comments

Comments
 (0)