Skip to content

Commit e094eab

Browse files
Fix bundler warning
This config is only ran in CI so I didn't see it when I introduced it,. Warning message: ``` Run bundle config --without benchmark [DEPRECATED] Using the `config` command without a subcommand [list, get, set, unset] is deprecated and will be removed in the future. Use `bundle config set --without benchmark` instead. ```
1 parent 6c82cde commit e094eab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ruby.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555

5656
- name: Install dependencies
5757
run: |
58-
bundle config --without benchmark
58+
bundle config set --without benchmark
5959
bundle install
6060
6161
- name: Run tests

0 commit comments

Comments
 (0)