Skip to content

File tree

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Make sure RUBY_VERSION matches the Ruby version in .ruby-version
2-
ARG RUBY_VERSION=4.0.2
2+
ARG RUBY_VERSION=4.0.3
33
FROM ghcr.io/rails/devcontainer/images/ruby:$RUBY_VERSION
44

55
# Ensure binding is always 0.0.0.0

.github/actions/setup-rubygems.org/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ runs:
2323
if: github.secret_source != 'None' && inputs.install-avo-pro == 'true'
2424
run: |
2525
printf "BUNDLE_WITH=avo\nRAILS_GROUPS=avo\n" >> $GITHUB_ENV
26-
- uses: ruby/setup-ruby@319994f95fa847cf3fb3cd3dbe89f6dcde9f178f # v1.295.0
26+
- uses: ruby/setup-ruby@0cb964fd540e0a24c900370abf38a33466142735 # v1.305.0
2727
with:
2828
ruby-version: ${{ inputs.ruby-version }}
2929
bundler-cache: true

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
name: Docker build (and optional push)
1414
runs-on: ubuntu-24.04
1515
env:
16-
RUBYGEMS_VERSION: "4.0.8"
17-
RUBY_VERSION: "4.0.2"
16+
RUBYGEMS_VERSION: "4.0.10"
17+
RUBY_VERSION: "4.0.3"
1818
permissions:
1919
id-token: write
2020
steps:

.github/workflows/lint.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1616
with:
1717
persist-credentials: false
18-
- uses: ruby/setup-ruby@4c56a21280b36d862b5fc31348f463d60bdc55d5 # v1.301.0
18+
- uses: ruby/setup-ruby@0cb964fd540e0a24c900370abf38a33466142735 # v1.305.0
1919
with:
2020
bundler-cache: true
2121
- name: Rubocop
@@ -27,7 +27,7 @@ jobs:
2727
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2828
with:
2929
persist-credentials: false
30-
- uses: ruby/setup-ruby@4c56a21280b36d862b5fc31348f463d60bdc55d5 # v1.301.0
30+
- uses: ruby/setup-ruby@0cb964fd540e0a24c900370abf38a33466142735 # v1.305.0
3131
with:
3232
bundler-cache: true
3333
- name: Herb Analyze
@@ -39,7 +39,7 @@ jobs:
3939
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4040
with:
4141
persist-credentials: false
42-
- uses: ruby/setup-ruby@4c56a21280b36d862b5fc31348f463d60bdc55d5 # v1.301.0
42+
- uses: ruby/setup-ruby@0cb964fd540e0a24c900370abf38a33466142735 # v1.305.0
4343
with:
4444
bundler-cache: true
4545
- name: Brakeman
@@ -51,7 +51,7 @@ jobs:
5151
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
5252
with:
5353
persist-credentials: false
54-
- uses: ruby/setup-ruby@4c56a21280b36d862b5fc31348f463d60bdc55d5 # v1.301.0
54+
- uses: ruby/setup-ruby@0cb964fd540e0a24c900370abf38a33466142735 # v1.305.0
5555
with:
5656
bundler-cache: true
5757
- name: Importmap Verify
@@ -83,7 +83,7 @@ jobs:
8383
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
8484
with:
8585
persist-credentials: false
86-
- uses: ruby/setup-ruby@4c56a21280b36d862b5fc31348f463d60bdc55d5 # v1.301.0
86+
- uses: ruby/setup-ruby@0cb964fd540e0a24c900370abf38a33466142735 # v1.305.0
8787
with:
8888
bundler-cache: true
8989
- name: krane render

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
name: Rails tests ${{ matrix.tests.name }}
2626
runs-on: ubuntu-24.04
2727
env:
28-
RUBYGEMS_VERSION: "4.0.8"
28+
RUBYGEMS_VERSION: "4.0.10"
2929
# Fail hard when Toxiproxy is not running to ensure all tests (even Toxiproxy optional ones) are passing
3030
REQUIRE_TOXIPROXY: true
3131
TOXIPROXY_LISTEN_HOST: "0.0.0.0"
@@ -41,8 +41,8 @@ jobs:
4141
- name: Setup rubygems.org
4242
uses: ./.github/actions/setup-rubygems.org
4343
with:
44-
ruby-version: "4.0.2"
45-
rubygems-version: "4.0.8"
44+
ruby-version: "4.0.3"
45+
rubygems-version: "4.0.10"
4646
install-avo-pro: ${{ matrix.tests.id != 'avo-without-pro' }}
4747

4848
- name: Tests ${{ matrix.tests.name }}

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.0.2
1+
4.0.3

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# syntax = docker/dockerfile:1.10
22

33
# Make sure RUBY_VERSION matches the Ruby version in .ruby-version and Gemfile
4-
ARG RUBY_VERSION=4.0.2
4+
ARG RUBY_VERSION=4.0.3
55
ARG ALPINE_VERSION=3.23
66
FROM ruby:$RUBY_VERSION-alpine${ALPINE_VERSION} AS base
77

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1376,7 +1376,7 @@ CHECKSUMS
13761376
zlib (3.2.3) sha256=5bd316698b32f31a64ab910a8b6c282442ca1626a81bbd6a1674e8522e319c20
13771377

13781378
RUBY VERSION
1379-
ruby 4.0.2
1379+
ruby 4.0.3
13801380

13811381
BUNDLED WITH
1382-
4.0.8
1382+
4.0.10

0 commit comments

Comments
 (0)