From 1b1c3b59bb762e66fe1389e578ac9e032d9da448 Mon Sep 17 00:00:00 2001 From: Marc Anguera Insa Date: Sun, 17 Mar 2024 22:17:18 +0100 Subject: [PATCH] [CI] add Ruby 3.3 and tmp fix for Ruby 3.4 (head) --- .github/workflows/ci.yml | 2 +- Gemfile | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e7a0c485..5db3b99c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: strategy: fail-fast: false matrix: - ruby: ['2.7', '3.0', '3.1', '3.2', 'head'] + ruby: ['2.7', '3.0', '3.1', '3.2', '3.3', 'head'] steps: - uses: actions/checkout@v3 - uses: ruby/setup-ruby@v1 diff --git a/Gemfile b/Gemfile index c80ee369..964de604 100644 --- a/Gemfile +++ b/Gemfile @@ -1,3 +1,6 @@ source "http://rubygems.org" gemspec + +# Temporal Ruby 3.4 support, see more: https://github.com/vcr/vcr/pull/1003 +gem 'base64'