Skip to content

Commit ab3eef8

Browse files
committed
Hm, alternative gem requires Ruby 3.3+
1 parent 01dd32f commit ab3eef8

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/danger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup ruby
2121
uses: ruby/setup-ruby@708024e6c902387ab41de36e1669e43b5ee7085e # v1.283.0
2222
with:
23-
ruby-version: 3.2
23+
ruby-version: 3.3
2424
rubygems: 3.4.10
2525
bundler-cache: true
2626
- name: Create base branch

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ concurrency:
66
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
77
cancel-in-progress: true
88
env:
9-
ruby: '3.2'
9+
ruby: '3.3'
1010
jobs:
1111
rubocop:
1212
name: RuboCop

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: Ruby ${{ matrix.ruby }}
1111
strategy:
1212
matrix:
13-
ruby: ['3.2', '3.3', '3.4']
13+
ruby: ['3.3', '3.4']
1414
fail-fast: false
1515
runs-on: ubuntu-latest
1616
env:

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ require:
1212
- ./.rubocop/specific_action_names.rb
1313

1414
AllCops:
15-
TargetRubyVersion: 3.2
15+
TargetRubyVersion: 3.3
1616
NewCops: enable
1717
Exclude:
1818
- 'vendor/**/*'

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG RUBY_VERSION=3.2
1+
ARG RUBY_VERSION=3.3
22
FROM ruby:$RUBY_VERSION-bookworm
33

44
ENV DEBIAN_FRONTEND=noninteractive

INSTALL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ These instructions are based on Ubuntu 24.04 LTS, though the OSMF servers are cu
2929
Many of the dependencies are managed through the standard Ruby on Rails mechanisms - i.e. Ruby gems specified in the Gemfile and installed using Bundler. Some system packages are also required before you can get the various gems installed.
3030

3131
**Minimum requirements:**
32-
* Ruby 3.2+
32+
* Ruby 3.3+
3333
* PostgreSQL 13+
3434
* Bundler (see note below about [developer Ruby setup](#ruby-version-manager-optional))
3535
* JavaScript Runtime

0 commit comments

Comments
 (0)