From a3e19e6b9c4ae78456fc0ba04b73eaa493e3d384 Mon Sep 17 00:00:00 2001 From: "Z. Cliffe Schreuders" Date: Tue, 23 Sep 2025 14:12:48 +0100 Subject: [PATCH] Update Gemfile to specify github-pages version and change Ruby version in GitHub Actions workflow - Updated the github-pages gem version to '~> 227' for compatibility. - Changed the Ruby version in the GitHub Actions workflow from 2.7 to 3.0 for improved support. --- .github/workflows/deploy.yml | 2 +- Gemfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 091f78c..06b239f 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -24,7 +24,7 @@ jobs: - name: Setup Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: '2.7' + ruby-version: '3.0' bundler-cache: false - name: Install dependencies diff --git a/Gemfile b/Gemfile index 697483e..eee9310 100644 --- a/Gemfile +++ b/Gemfile @@ -1,7 +1,7 @@ source 'https://rubygems.org' # GitHub Pages compatible gems -gem 'github-pages', group: :jekyll_plugins +gem 'github-pages', '~> 227', group: :jekyll_plugins gem 'jekyll-feed', '~> 0.12' gem 'jekyll-sitemap' gem 'jekyll-seo-tag'