From 50112a9c8e8ed8a0e78bff76a956bf1ee25f263a Mon Sep 17 00:00:00 2001 From: Henning Ulfarsson Date: Thu, 25 Sep 2025 15:38:04 +0000 Subject: [PATCH] Fix GitHub Actions workflow to avoid bundler conflicts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Set bundler: none to prevent old bundler installation - Use specific gem versions for consistent builds - Avoid Ruby 3.3.9 + bundler 2.0.2 compatibility issues 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/jekyll.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml index 099a214..f016fd4 100644 --- a/.github/workflows/jekyll.yml +++ b/.github/workflows/jekyll.yml @@ -32,11 +32,16 @@ jobs: uses: ruby/setup-ruby@v1 with: ruby-version: '3.3.9' + bundler: none # Don't install bundler at all - name: Install dependencies run: | gem install jekyll -v 4.4.0 - gem install minima jekyll-feed jekyll-sitemap jekyll-seo-tag webrick + gem install minima -v 2.5.2 + gem install jekyll-feed -v 0.17.0 + gem install jekyll-sitemap -v 1.4.0 + gem install jekyll-seo-tag -v 2.8.0 + gem install webrick -v 1.9.1 - name: Setup Pages id: pages