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 @@ -37,7 +37,7 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.4.8
ruby-version: 3.4.9
bundler-cache: true

- name: Run migrations
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.4.8
3.4.9
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 ruby:3.4.8-alpine AS base
FROM ruby:3.4.9-alpine AS base
RUN apk add build-base curl git yaml-dev libc-utils libpq-dev nodejs tzdata && rm -rf /var/cache/apk/*

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

# Runtime stage
FROM ruby:3.4.8-alpine
FROM ruby:3.4.9-alpine
ENV INSTALL_PATH /srv/dss
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.8'
ruby '3.4.9'

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

RUBY VERSION
ruby 3.4.8p72
ruby 3.4.9p82

BUNDLED WITH
2.6.9