Skip to content

Commit 362f3a8

Browse files
committed
Uninstall bundler before installing an old version
1 parent 0197f9b commit 362f3a8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ jobs:
2222
with:
2323
ruby-version: ${{ matrix.ruby-version }}
2424
bundler-cache: true
25+
- name: Uninstall existing Bundler
26+
run: |
27+
gem uninstall bundler -a -x || true
2528
- name: Install Bundler
2629
run: |
2730
if [[ "${{ matrix.ruby-version }}" == "2.6" || "${{ matrix.ruby-version }}" == "2.7" ]]; then

0 commit comments

Comments
 (0)