Skip to content

Bump actions/checkout from 4 to 5 in the updates group #135

Bump actions/checkout from 4 to 5 in the updates group

Bump actions/checkout from 4 to 5 in the updates group #135

Workflow file for this run

name: CI
'on':
pull_request:
jobs:
github-pages:
runs-on: ubuntu-latest
container: ruby:3-buster
steps:
- uses: actions/checkout@v5
- uses: actions/cache@v4
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
- name: Install Ruby dependencies.
run: |
gem install bundler -v 2.4.22
bundle install
- name: Build static site with Jekyll.
run: bundle exec jekyll build