We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb38a98 commit 47e7732Copy full SHA for 47e7732
.github/workflows/jekyll.yaml
@@ -30,21 +30,13 @@ jobs:
30
timeout-minutes: 15
31
runs-on: ubuntu-latest
32
steps:
33
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
34
- name: Set up Ruby
35
uses: ruby/setup-ruby@v1
36
with:
37
ruby-version: 3.2.2
38
- - name: Cache gems
39
- uses: actions/cache@v3
40
- with:
41
- path: ~/vendor/bundle
42
- key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }}
43
- restore-keys: ${{ runner.os }}-gem
+ bundler-cache: true
44
- name: Test site build
45
run: |
46
ruby --version
47
- gem install bundler
48
- bundle config path ~/vendor/bundle
49
- bundle install --jobs 4 --retry 3
50
bundle exec jekyll build
0 commit comments