Skip to content

Commit 68eafdf

Browse files
committed
nodejs: updated nodejs version to 24.14.0
1 parent 89cce69 commit 68eafdf

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

nodejs/README.md

Lines changed: 1 addition & 1 deletion
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 v24.13.1 is installed with [nodenv](https://github.com/nodenv/nodenv)
4+
* node.js v24.14.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

Lines changed: 6 additions & 6 deletions
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 "24.13.1\n" }
66+
its(:stdout){ should eq "24.14.0\n" }
6767
end
6868

6969
[
7070
{
71-
nodejs: '24.13.1',
71+
nodejs: '24.14.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-
24 => 24.13.1
90-
24.13 => 24.13.1
89+
24 => 24.14.0
90+
24.14 => 24.14.0
9191
ALIASES
9292
}
9393
end
9494

9595
{
96-
'24' => '24.13.1',
97-
'24.13' => '24.13.1',
96+
'24' => '24.14.0',
97+
'24.14' => '24.14.0',
9898
}.each do |src, dest|
9999
describe file("/opt/nodenv/versions/#{src}") do
100100
it { should be_symlink }

0 commit comments

Comments
 (0)