Skip to content

Commit

Permalink
ruby/setup-ruby@v1
Browse files Browse the repository at this point in the history
  • Loading branch information
JV-conseil committed Aug 25, 2023
1 parent 563b2b1 commit 46aba38
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ jobs:
- jekyll:pages
steps:
- uses: actions/checkout@v3
- uses: actions/setup-ruby@v1
- uses: ruby/setup-ruby@v1
with:
ruby-version: '2.x'
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- run: bundle install
- run: |
echo $'{\n "experimental": true\n}' | \
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,10 @@ jobs:
- jekyll:pages
steps:
- uses: actions/checkout@v3
- uses: actions/setup-ruby@v1
- uses: ruby/setup-ruby@v1
with:
ruby-version: '2.x'
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- run: bundle install
- run: |
echo $'{\n "experimental": true\n}' | \
Expand Down

0 comments on commit 46aba38

Please sign in to comment.