Skip to content

Commit e7a6661

Browse files
committed
nodejs: updated nodejs version to 20.3.0
1 parent e79c1f8 commit e7a6661

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

nodejs/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# about minimum2scp/nodejs image
22

33
* based on minimum2scp/baseimage (see https://github.com/minimum2scp/dockerfiles/tree/master/baseimage)
4-
* node.js v20.2.0 is installed with [nodenv](https://github.com/nodenv/nodenv)
4+
* node.js v20.3.0 is installed with [nodenv](https://github.com/nodenv/nodenv)
55
* nodenv is installed in /opt/nodenv
66
* [yarn](https://yarnpkg.com/) is installed with deb package
77

spec/nodejs/00base_spec.rb

+6-6
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@
6363

6464
describe command('nodenv version-name') do
6565
let(:login_shell){ true }
66-
its(:stdout){ should eq "20.2.0\n" }
66+
its(:stdout){ should eq "20.3.0\n" }
6767
end
6868

6969
[
7070
{
71-
nodejs: '20.2.0',
71+
nodejs: '20.3.0',
7272
},
7373
].each do |v|
7474
describe command('nodenv versions --bare --skip-aliases') do
@@ -86,15 +86,15 @@
8686
let(:login_shell){ true }
8787
its(:stdout){
8888
should eq <<~ALIASES
89-
20 => 20.2.0
90-
20.2 => 20.2.0
89+
20 => 20.3.0
90+
20.3 => 20.3.0
9191
ALIASES
9292
}
9393
end
9494

9595
{
96-
'20' => '20.2.0',
97-
'20.2' => '20.2.0',
96+
'20' => '20.3.0',
97+
'20.3' => '20.3.0',
9898
}.each do |src, dest|
9999
describe file("/opt/nodenv/versions/#{src}") do
100100
it { should be_symlink }

0 commit comments

Comments
 (0)