Skip to content

Commit 54f645b

Browse files
authored
Merge pull request #57 from riemann/dependabot/github_actions/actions/checkout-5
2 parents aad2fe1 + 0dc4ba8 commit 54f645b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
lint:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
- name: Setup ruby
1818
uses: ruby/setup-ruby@v1
1919
with:
@@ -35,7 +35,7 @@ jobs:
3535
- '3.3'
3636
- '3.4'
3737
steps:
38-
- uses: actions/checkout@v4
38+
- uses: actions/checkout@v5
3939
- name: Setup Ruby
4040
uses: ruby/setup-ruby@v1
4141
with:

.github/workflows/codeql-analysis.yml

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

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@v5
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL

spec/shared_examples.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ def wait_for(&block)
285285
end
286286

287287
it 'query quickly' do
288-
puts "\n #{format('%.2f', rate)} queries/sec (#{format('%.2f', (1000 / rate))}ms per query)"
288+
puts "\n #{format('%.2f', rate)} queries/sec (#{format('%.2f', 1000 / rate)}ms per query)"
289289
expect(rate).to be > 100
290290
end
291291
end
@@ -357,7 +357,7 @@ def wait_for(&block)
357357
end
358358

359359
it 'is threadsafe' do
360-
puts "\n #{format('%.2f', rate)} inserts/sec (#{format('%.2f', (1000 / rate))}ms per insert)"
360+
puts "\n #{format('%.2f', rate)} inserts/sec (#{format('%.2f', 1000 / rate)}ms per insert)"
361361
expect(rate).to be > expected_rate
362362
end
363363
end

0 commit comments

Comments
 (0)