Skip to content

Commit a2d3f2a

Browse files
committed
Update dependencies
1 parent c01812b commit a2d3f2a

File tree

5 files changed

+6
-9
lines changed

5 files changed

+6
-9
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,11 @@ jobs:
1313
strategy:
1414
matrix:
1515
gemfile: [Gemfile, delayed.gemfile]
16-
ruby-version: ['2.5', '2.6', '2.7', '3.0']
17-
exclude:
18-
- gemfile: delayed.gemfile
19-
ruby-version: '2.5'
16+
ruby-version: ['3.0', '3.1', '3.2']
2017
env:
2118
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
2219
steps:
23-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v4
2421
- name: Set up Ruby
2522
uses: ruby/setup-ruby@v1
2623
with:

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
source 'https://rubygems.org'
22

3-
gem "delayed_job_active_record", "~> 4.1.7"
3+
gem "delayed_job_active_record"
44

55
# Specify your gem's dependencies in delayed_cron_job.gemspec
66
gemspec

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2014-2017 Pascal Zumkehr
1+
Copyright (c) 2014-2023 Pascal Zumkehr
22

33
MIT License
44

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,5 +178,5 @@ jobs.
178178
## License
179179

180180
Delayed::Cron::Job is released under the terms of the MIT License.
181-
Copyright 2014-2021 Pascal Zumkehr. See [LICENSE](LICENSE) for further
181+
Copyright 2014-2023 Pascal Zumkehr. See [LICENSE](LICENSE) for further
182182
information.

spec/delayed_cron_job_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ class DatabaseDisconnectPlugin < Delayed::Plugin
207207
j = Delayed::Job.first
208208
expect(j.id).to eq(job.id)
209209
expect(j.cron).to eq(job.cron)
210-
expect(j.attempts).to eq(0)
210+
expect(j.attempts).to be_in([0, 1])
211211
end
212212
end
213213
end

0 commit comments

Comments
 (0)