Skip to content

Commit 50112a9

Browse files
ulfarssonclaude
andcommitted
Fix GitHub Actions workflow to avoid bundler conflicts
- 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 <noreply@anthropic.com>
1 parent 0130e78 commit 50112a9

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/jekyll.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,16 @@ jobs:
3232
uses: ruby/setup-ruby@v1
3333
with:
3434
ruby-version: '3.3.9'
35+
bundler: none # Don't install bundler at all
3536

3637
- name: Install dependencies
3738
run: |
3839
gem install jekyll -v 4.4.0
39-
gem install minima jekyll-feed jekyll-sitemap jekyll-seo-tag webrick
40+
gem install minima -v 2.5.2
41+
gem install jekyll-feed -v 0.17.0
42+
gem install jekyll-sitemap -v 1.4.0
43+
gem install jekyll-seo-tag -v 2.8.0
44+
gem install webrick -v 1.9.1
4045
4146
- name: Setup Pages
4247
id: pages

0 commit comments

Comments
 (0)