Skip to content

Commit

Permalink
Update ruby and node (#7153)
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Brandes <mc.cache@web.de>
  • Loading branch information
NotMyFault committed Mar 5, 2024
1 parent e9f30c0 commit 2fd44ba
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .node-version
@@ -1 +1 @@
20.10.0
20.11.1
2 changes: 1 addition & 1 deletion .ruby-version
@@ -1 +1 @@
3.2.2
3.3.0
4 changes: 2 additions & 2 deletions Dockerfile
@@ -1,4 +1,4 @@
FROM node:20.10.0 as node
FROM node:20.11.1 as node
ENV USE_LOCAL_NODE=true

WORKDIR /usr/src/jenkinsio/build/_site/
Expand All @@ -11,7 +11,7 @@ COPY scripts ./scripts
RUN npm install
RUN make assets

FROM ruby:3.2.2 as builder
FROM ruby:3.3.0 as builder
ENV USE_LOCAL_RUBY=true

# throw errors if Gemfile has been modified since Gemfile.lock
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile_k8s
Expand Up @@ -28,7 +28,7 @@ spec:
automountServiceAccountToken: false
containers:
- name: "jnlp"
image: "jenkinsciinfra/builder:3.1.9"
image: "jenkinsciinfra/builder:3.1.25"
resources:
limits: {}
requests:
Expand Down
2 changes: 1 addition & 1 deletion scripts/node
Expand Up @@ -11,7 +11,7 @@ if [ -n "${USE_LOCAL_NODE}" ]; then
fi


CONTAINER_NAME=node:20.10.0
CONTAINER_NAME=node:20.11.1

source ./scripts/docker-env

Expand Down
2 changes: 1 addition & 1 deletion scripts/ruby
Expand Up @@ -10,7 +10,7 @@ if [ -n "${USE_LOCAL_RUBY}" ]; then
exit
fi

CONTAINER_NAME=ruby:3.2.2
CONTAINER_NAME=ruby:3.3.0
source ./scripts/docker-env

if [ ! -z ${LISTEN+x} ]; then
Expand Down

0 comments on commit 2fd44ba

Please sign in to comment.