Skip to content

Commit 2fd11ae

Browse files
committed
Hm, alternative gem requires Ruby 3.3+
1 parent 4b6ce7e commit 2fd11ae

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@90be1154f987f4dc0fe0dd0feedac9e473aa4ba8 # v1.286.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
@@ -8,7 +8,7 @@ concurrency:
88
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
99
cancel-in-progress: true
1010
env:
11-
ruby: '3.2'
11+
ruby: '3.3'
1212
jobs:
1313
rubocop:
1414
name: RuboCop

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Ruby ${{ matrix.ruby }}
1313
strategy:
1414
matrix:
15-
ruby: ['3.2', '3.3', '3.4']
15+
ruby: ['3.3', '3.4']
1616
fail-fast: false
1717
runs-on: ubuntu-latest
1818
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)