We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b6c1628 + 1c93163 commit 6a29763Copy full SHA for 6a29763
1 file changed
.github/workflows/rubocop.yml
@@ -10,12 +10,20 @@ jobs:
10
build:
11
12
runs-on: ubuntu-latest
13
+ env:
14
+ BUNDLER_VERSION: 4.0.6
15
steps:
16
- uses: actions/checkout@v6
17
- name: Set up Ruby 4.0
18
uses: ruby/setup-ruby@v1
19
with:
20
ruby-version: 4.0
21
+ - name: Pin Bundler to 4.0.6 (workaround for ruby/rubygems#9536)
22
+ run: |
23
+ gem install bundler -v 4.0.6
24
+ ruby --version
25
+ gem --version
26
+ bundle --version
27
- name: Build and run RuboCop
28
run: |
29
BUNDLE_ONLY=rubocop bundle install --jobs 4 --retry 3
0 commit comments