Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Commit 2405576

Browse files
authored
fix: 🐛 Bundler cache for GitHub Actions (#47)
Specify Bundler version for GitHub Actions cache
1 parent f6906bf commit 2405576

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/config.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ jobs:
1515
key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }}
1616
restore-keys: |
1717
${{ runner.os }}-gem-
18+
- name: Install appropriate version's Bundler
19+
run: gem install bundler:1.17.3
1820
- name: $ bundle install
1921
run: |
2022
bundle config path vendor/bundle
21-
bundle install --jobs=4 --retry=3
23+
bundle _1.17.3_ install --jobs=4 --retry=3

0 commit comments

Comments
 (0)