Skip to content

Commit

Permalink
Maintenance: Apply Ruby 3.2.4 security update.
Browse files Browse the repository at this point in the history
  • Loading branch information
mgruner committed Apr 26, 2024
1 parent 1d75238 commit 87e9644
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
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

0 comments on commit 87e9644

Please sign in to comment.