Skip to content

Commit

Permalink
Fix ruby version in jekyll.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mabarber92 authored Oct 15, 2024
1 parent 36c0224 commit 062a673
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/jekyll.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1' # Not needed with a .ruby-version file
ruby-version: '3.3' # Not needed with a .ruby-version file
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
cache-version: 0 # Increment this number if you need to re-download cached gems
- run: bundle exec rake
- name: Setup Pages
id: pages
uses: actions/configure-pages@v3
Expand Down

0 comments on commit 062a673

Please sign in to comment.