From d4264e6118038e4f0a22510e08a9a5be1802b9fe Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sun, 16 Feb 2025 03:12:05 +0000 Subject: [PATCH 1/2] Update dependency ruby to v3.4.2 --- Gemfile | 2 +- Gemfile.lock | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index adaab29..5458ce8 100644 --- a/Gemfile +++ b/Gemfile @@ -2,7 +2,7 @@ source 'https://rubygems.org' -ruby '3.4.1' +ruby '3.4.2' gem 'bootsnap', require: false gem 'csv' gem 'importmap-rails' diff --git a/Gemfile.lock b/Gemfile.lock index 3b8875e..4fe8fde 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -612,7 +612,7 @@ CHECKSUMS zeitwerk (2.7.1) sha256=0945986050e4907140895378e74df1fe882a2271ed087cc6c6d6b00d415a2756 RUBY VERSION - ruby 3.4.1p0 + ruby 3.4.2p28 BUNDLED WITH 2.6.1 From d4018590884dd0bf755d7f96dbf0da4a770f3440 Mon Sep 17 00:00:00 2001 From: Manuel Bustillo Date: Sun, 16 Feb 2025 22:20:24 +0100 Subject: [PATCH 2/2] Upgrade to ruby 3.4.2 --- .gitea/workflows/tests.yml | 6 +++--- .ruby-version | 2 +- Dockerfile | 2 +- Dockerfile.dev | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/tests.yml b/.gitea/workflows/tests.yml index 9c53589..c83664b 100644 --- a/.gitea/workflows/tests.yml +++ b/.gitea/workflows/tests.yml @@ -23,7 +23,7 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} ref: ${{ github.head_ref }} # Checkout the actual branch, not the result if merged into the base - - uses: ruby/setup-ruby@v1.207.0 + - uses: ruby/setup-ruby@v1.220.0 - run: bundle install - &postgres_wait name: Wait until Postgres is ready to accept connections @@ -70,7 +70,7 @@ jobs: - uses: actions/checkout@v4 with: token: ${{ secrets.GITHUB_TOKEN }} - - uses: ruby/setup-ruby@v1.207.0 + - uses: ruby/setup-ruby@v1.220.0 - run: bundle install - run: bundle exec rubocop --force-exclusion --parallel check-licenses: @@ -79,7 +79,7 @@ jobs: - uses: actions/checkout@v4 with: token: ${{ secrets.GITHUB_TOKEN }} - - uses: ruby/setup-ruby@v1.207.0 + - uses: ruby/setup-ruby@v1.220.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 408069a..a07bf72 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -ruby-3.4.1 +ruby-3.4.2 diff --git a/Dockerfile b/Dockerfile index 290b412..e15f2f4 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.4.1 +ARG RUBY_VERSION=3.4.2 FROM registry.docker.com/library/ruby:$RUBY_VERSION-slim AS base # Rails app lives here diff --git a/Dockerfile.dev b/Dockerfile.dev index 54e6717..a13a506 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.4.1 +ARG RUBY_VERSION=3.4.2 FROM registry.docker.com/library/ruby:$RUBY_VERSION-slim as base # Rails app lives here