Skip to content

Commit

Permalink
Bump Ruby version in old GH workflow files
Browse files Browse the repository at this point in the history
  • Loading branch information
h-m-m committed May 21, 2024
1 parent 58e3060 commit 1aa0f60
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Install Ruby and gems
uses: ruby/setup-ruby@v1.152.0
with:
ruby-version: '3.2.2'
ruby-version: '3.2.3'
bundler-cache: true

- name: Set up database schema
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1.152.0
with:
ruby-version: '3.2.2'
ruby-version: '3.2.3'
bundler-cache: true # runs 'bundle install' and caches installed gems automatically

- name: Lint Ruby files
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1.152.0
with:
ruby-version: '3.2.2'
ruby-version: '3.2.3'
bundler-cache: true # runs 'bundle install' and caches installed gems automatically

- name: Security audit dependencies
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
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.2.2
ARG RUBY_VERSION=3.2.3
FROM ruby:$RUBY_VERSION-slim as base

# Rails app lives here
Expand Down

0 comments on commit 1aa0f60

Please sign in to comment.