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

Maintenance: Apply Ruby 3.2.4 security update. #5150

Closed
wants to merge 1 commit into from
Closed
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 .gitlab/ci/__includes__/job_defaults.yml
@@ -1,5 +1,5 @@
default:
image: $CI_REGISTRY/docker/zammad-ci:3.2.3
image: $CI_REGISTRY/docker/zammad-ci:3.2.4

tags:
- docker
Expand Down
2 changes: 1 addition & 1 deletion .gitlab/ci/test/migration.yml
Expand Up @@ -22,7 +22,7 @@
- !reference [.scripts, zammad_db_init]
# Then, switch to the current commit, migrate to it and run a few selected tests.
- git checkout $CI_COMMIT_SHA
- rvm use 3.2.3
- rvm use 3.2.4
- !reference [.scripts, bundle_install]
# Force redis usage, even if it was disabled by the initial configure_environment script of stable.
- export REDIS_URL=redis://redis
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
@@ -1 +1 @@
3.2.3
3.2.4
4 changes: 2 additions & 2 deletions Dockerfile
@@ -1,7 +1,7 @@
FROM node:20-slim as node


FROM ruby:3.2.3-slim AS builder
FROM ruby:3.2.4-slim AS builder
ARG DEBIAN_FRONTEND=noninteractive
ARG RAILS_ENV=production
ARG ZAMMAD_DIR=/opt/zammad
Expand All @@ -15,7 +15,7 @@ RUN contrib/docker/setup.sh builder

# note: zammad is currently incompatible to alpine because of:
# https://github.com/docker-library/ruby/issues/113
FROM ruby:3.2.3-slim
FROM ruby:3.2.4-slim
ARG DEBIAN_FRONTEND=noninteractive
ARG ZAMMAD_USER=zammad
ENV RAILS_ENV=production
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -3,7 +3,7 @@
source 'https://rubygems.org'

# core - base
ruby '3.2.3'
ruby '3.2.4'
gem 'rails', '~> 7.0.8'

# core - rails additions
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Expand Up @@ -846,7 +846,7 @@ DEPENDENCIES
zendesk_api

RUBY VERSION
ruby 3.2.3p157
ruby 3.2.4p170

BUNDLED WITH
2.4.1
Expand Up @@ -55,8 +55,8 @@ For Linux and macOS:

```screen
curl -sSL https://get.rvm.io | bash -s stable --rails
rvm install ruby-3.2.3
rvm --default use 3.2.3
rvm install ruby-3.2.4
rvm --default use 3.2.4
```

## NVM, Node.js and Yarn
Expand Down