Skip to content

Commit

Permalink
Ruby/Bundler update
Browse files Browse the repository at this point in the history
  • Loading branch information
minter committed Feb 25, 2025
1 parent ee971d6 commit c7a78a7
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.4.1
ruby-version: 3.4.2
- name: Install dependencies
run: |
sudo apt-get -yqq install libpq-dev
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ inherit_gem:

AllCops:
NewCops: enable
TargetRubyVersion: 3.4.1
TargetRubyVersion: 3.4.2
Exclude:
- "db/**/*"
- "script/*"
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby-3.4.1
ruby-3.4.2
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax = docker/dockerfile:1

# Make sure RUBY_VERSION matches the Ruby version in .ruby-version and Gemfile
ARG RUBY_VERSION=3.4.1
ARG RUBY_VERSION=3.4.2
FROM registry.docker.com/library/ruby:$RUBY_VERSION-slim as base

# Rails app lives here
Expand Down Expand Up @@ -59,7 +59,7 @@ RUN apt-get update -qq && \
rm -rf /var/cache/apt/archives/*

# Install specific version of bundler
ARG BUNDLER_VERSION=2.6.3
ARG BUNDLER_VERSION=2.6.5
RUN gem install bundler --no-document -v "${BUNDLER_VERSION}"

# Install application gems
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
source "https://rubygems.org"

ruby "3.4.1"
ruby "3.4.2"

# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem "rails", "~> 8.0"
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ DEPENDENCIES
webmock

RUBY VERSION
ruby 3.4.1p0
ruby 3.4.2p28

BUNDLED WITH
2.6.3
2.6.5

0 comments on commit c7a78a7

Please sign in to comment.