From b4664c5e1dd1bffcb7f36e7df897684bcdcbb04e Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sat, 9 Nov 2024 01:08:10 +0000 Subject: [PATCH 1/4] Update dependency ruby to v3.3.6 --- Gemfile | 2 +- Gemfile.lock | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index bb8942b..731c2e6 100644 --- a/Gemfile +++ b/Gemfile @@ -1,6 +1,6 @@ source 'https://rubygems.org' -ruby '3.3.5' +ruby '3.3.6' gem 'bootsnap', require: false gem 'csv' gem 'importmap-rails' diff --git a/Gemfile.lock b/Gemfile.lock index f97301b..0132c5b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -354,7 +354,7 @@ DEPENDENCIES web-console RUBY VERSION - ruby 3.3.5p100 + ruby 3.3.6p108 BUNDLED WITH 2.5.17 From f7b227bc971ceb817a7ba997616dfa26aba5eaa3 Mon Sep 17 00:00:00 2001 From: Manuel Bustillo Date: Sat, 9 Nov 2024 08:38:14 +0100 Subject: [PATCH 2/4] Update ruby version in Gemfile and .ruby-version --- .ruby-version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ruby-version b/.ruby-version index f13c6f4..e391e18 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -ruby-3.3.5 +ruby-3.3.6 From 004624687a2b6f17fb839bf369f4d631e642ec39 Mon Sep 17 00:00:00 2001 From: Manuel Bustillo Date: Sat, 9 Nov 2024 08:39:57 +0100 Subject: [PATCH 3/4] Update dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b155a9d..071a90a 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.5 +ARG RUBY_VERSION=3.3.6 FROM registry.docker.com/library/ruby:$RUBY_VERSION-slim as base # Rails app lives here From 2fc4e2debd5bc0a2f3e6957413122036b909b7b6 Mon Sep 17 00:00:00 2001 From: Bustikiller Date: Thu, 14 Nov 2024 09:40:53 +0100 Subject: [PATCH 4/4] Use a setup-ruby version that has ruby 3.3.6 --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9f2572f..36f5b06 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -22,7 +22,7 @@ jobs: - uses: actions/checkout@v4 with: token: ${{ secrets.GITHUB_TOKEN }} - - uses: ruby/setup-ruby@v1 + - uses: ruby/setup-ruby@v1.202.0 - run: bundle install - name: Wait until Postgres is ready to accept connections run: |