From 0775c06b946f7bbe30f7239aa97e079431452be3 Mon Sep 17 00:00:00 2001 From: Manuel Bustillo Date: Wed, 25 Dec 2024 18:03:14 +0100 Subject: [PATCH] WIP: Upgrade to ruby 3.4 --- .github/workflows/license_finder.yml | 2 +- .ruby-version | 2 +- Dockerfile | 2 +- Dockerfile.dev | 2 +- Gemfile | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/license_finder.yml b/.github/workflows/license_finder.yml index 01c120e..993de1b 100644 --- a/.github/workflows/license_finder.yml +++ b/.github/workflows/license_finder.yml @@ -16,7 +16,7 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} - uses: ruby/setup-ruby@v1.202.0 with: - ruby-version: '3.3.6' + ruby-version: '3.4.0' - name: Install project dependencies run: bundle install --jobs `getconf _NPROCESSORS_ONLN` - name: Run license finder diff --git a/.ruby-version b/.ruby-version index e391e18..4e3e8a6 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -ruby-3.3.6 +ruby-3.4.0 diff --git a/Dockerfile b/Dockerfile index 071a90a..e89643f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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.3.6 +ARG RUBY_VERSION=3.4.0 FROM registry.docker.com/library/ruby:$RUBY_VERSION-slim as base # Rails app lives here diff --git a/Dockerfile.dev b/Dockerfile.dev index f911e52..64a015b 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -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.3.6 +ARG RUBY_VERSION=3.4.0 FROM registry.docker.com/library/ruby:$RUBY_VERSION-slim as base # Rails app lives here diff --git a/Gemfile b/Gemfile index 0a618dd..f209c48 100644 --- a/Gemfile +++ b/Gemfile @@ -1,6 +1,6 @@ source 'https://rubygems.org' -ruby '3.3.6' +ruby '3.4.0' gem 'bootsnap', require: false gem 'csv' gem 'importmap-rails'