Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to latest ruby #1551

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/back.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
env:
CI: true
COVERAGE: true
RUBY_VERSION: 3.2.2
RUBY_VERSION: 3.3.6

BACK_HOST: http://localhost:3001
FRONT_HOST: http://localhost:3000
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/end-to-end.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.2
ruby-version: 3.3.6
bundler-cache: true
working-directory: backend

Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.2
3.3.6
2 changes: 1 addition & 1 deletion backend/.ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.2
3.3.6
2 changes: 1 addition & 1 deletion backend/.standard.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby_version: 3.2.0
ruby_version: 3.3.6
2 changes: 1 addition & 1 deletion backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1
FROM ruby:3.2.2
FROM ruby:3.3.6
WORKDIR /opt/apps/datapass-backend/current
COPY ./Gemfile Gemfile
COPY ./Gemfile.lock Gemfile.lock
Expand Down
2 changes: 1 addition & 1 deletion backend/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ git_source(:github) do |repo_name|
"https://github.com/#{repo_name}.git"
end

ruby "3.2.2"
ruby "3.3.6"

gem "active_snapshot"
gem "carrierwave"
Expand Down
2 changes: 1 addition & 1 deletion backend/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ DEPENDENCIES
webmock

RUBY VERSION
ruby 3.2.2p53
ruby 3.3.6p108

BUNDLED WITH
2.4.7
2 changes: 1 addition & 1 deletion backend/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Pour le développement en local, suivez les instructions ci-dessous:

## Dépendances

- ruby 3.2.2
- ruby 3.3.6
- redis
- postgresql 12.11

Expand Down
Loading