Skip to content

Commit f982e3c

Browse files
authored
Merge pull request #14 from PermutaTriangle/modernize-dependencies-2024
Fix GitHub Actions workflow to avoid bundler conflicts
2 parents 331fb89 + 50112a9 commit f982e3c

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)