Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.4.2
ruby-version: 3.4.8
bundler-cache: true
env:
BUNDLE_GEMS__CONTRIBSYS__COM: ${{ secrets.BUNDLE_GEMS__CONTRIBSYS__COM }}
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.4.2
3.4.8
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# It also improves build times by caching the base stage.

# Base stage
FROM public.ecr.aws/docker/library/ruby:3.4.2-alpine AS base
FROM ruby:3.4.8-alpine AS base
RUN apk add build-base bzip2-dev curl libc-utils libffi-dev libpq-dev nodejs tzdata yaml-dev xz-dev zlib-dev && rm -rf /var/cache/apk/*

# Set locale and timezone
Expand Down Expand Up @@ -71,7 +71,7 @@ COPY . $INSTALL_PATH
RUN bundle exec rake DATABASE_URL=postgresql:does_not_exist SECRET_KEY_BASE=dummy --quiet assets:precompile

# Runtime stage
FROM public.ecr.aws/docker/library/ruby:3.4.2-alpine
FROM ruby:3.4.8-alpine
ENV INSTALL_PATH /srv/dss-api
RUN mkdir -p $INSTALL_PATH

Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby '3.4.2'
ruby '3.4.8'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 8.0', '>= 8.0.4'
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -696,7 +696,7 @@ DEPENDENCIES
webmock (>= 3.24.0)

RUBY VERSION
ruby 3.4.2p28
ruby 3.4.8p72

BUNDLED WITH
2.6.9
Loading