From 8225fe01fe0fa9d6bcda3630bf99f74bcbe6d25a Mon Sep 17 00:00:00 2001 From: Jason Frey Date: Thu, 19 Dec 2024 10:06:51 -0500 Subject: [PATCH] Upgrade Ruby to 3.3 and jekyll to 4.3 Follow up to ManageIQ/manageiq.org#1192 --- .github/workflows/ci.yaml | 2 +- Gemfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index dd89dadd8..230a146f3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -15,7 +15,7 @@ jobs: - name: Set up Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: '2.7' + ruby-version: '3.3' bundler-cache: true timeout-minutes: 30 - name: Get manageiq.org repo diff --git a/Gemfile b/Gemfile index 04ab515ac..5fb37dd72 100644 --- a/Gemfile +++ b/Gemfile @@ -1,6 +1,6 @@ source "https://rubygems.org" -gem "jekyll" +gem "jekyll", ">= 4.3.4" gem "jekyll-toc" -gem "nokogiri", "~> 1.13", ">= 1.13.6" # dependency of jekyll-toc, listed to fix CVEs +gem "nokogiri", "~> 1.17", ">= 1.17.2" # dependency of jekyll-toc, listed to fix CVEs gem "rake"