Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update ruby and node #7153

Merged
merged 1 commit into from Mar 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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