Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ jobs:
with:
submodules: true

- name: Set up Ruby 2.7
- name: Set up Ruby 3.4.5
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7.0
ruby-version: 3.4.5

- name: Install Bundler
run: gem install bundler -v 2.4.22
run: gem install bundler -v 2.7.2

- uses: actions/cache@v1
- uses: actions/cache@v4
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ source 'https://rubygems.org'
gem 'github-pages', group: :jekyll_plugins

# Testing utilities
gem "html-proofer"
gem "html-proofer", "3.19.4"

#gemspec
Loading