Skip to content

Commit 83f8deb

Browse files
committed
fix: lint, CI version of rubygems
1 parent 89ecda0 commit 83f8deb

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- uses: ruby/setup-ruby@v1
1818
with:
1919
ruby-version: ${{ matrix.rubyversion }}
20-
rubygems: '3.4'
20+
rubygems: '3.6.0'
2121
bundler-cache: true
2222
- name: Install Dependencies
2323
run: make install
@@ -36,7 +36,7 @@ jobs:
3636
- uses: ruby/setup-ruby@v1
3737
with:
3838
ruby-version: '3.4'
39-
rubygems: '3.4'
39+
rubygems: '3.6.0'
4040
bundler-cache: true
4141
- name: Install Dependencies
4242
run: make install
@@ -52,7 +52,7 @@ jobs:
5252
- uses: ruby/setup-ruby@v1
5353
with:
5454
ruby-version: '3.4'
55-
rubygems: '3.4'
55+
rubygems: '3.6.0'
5656
bundler-cache: true
5757
- name: Install Dependencies
5858
run: make install

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: ruby/setup-ruby@v1
1414
with:
1515
ruby-version: '3.4'
16-
rubygems: '3.4'
16+
rubygems: '3.6.0'
1717
bundler-cache: true
1818
- name: Build Package
1919
run: make install build

spec/support/vcr.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
require 'vcr'
44
require 'json'
55

6-
REPLACEMENT_STRING ||= '<REDACTED>'.freeze
7-
REPLACEMENT_ARRAY ||= [].freeze
8-
REPLACEMENT_HASH ||= {}.freeze
6+
REPLACEMENT_STRING = '<REDACTED>'
7+
REPLACEMENT_ARRAY = [].freeze
8+
REPLACEMENT_HASH = {}.freeze
99

10-
SCRUBBERS ||= [
10+
SCRUBBERS = [
1111
['client_ip', REPLACEMENT_STRING],
1212
['credentials', REPLACEMENT_HASH],
1313
['email', REPLACEMENT_STRING],

0 commit comments

Comments
 (0)