Skip to content

Commit fb668b0

Browse files
authored
Merge branch 'master' into dependabot/bundler/rexml-3.3.9
2 parents 51a5a96 + 75e3b1d commit fb668b0

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
uses: actions/checkout@v4
1313
- uses: ruby/setup-ruby@v1
1414
with:
15-
ruby-version: '3.0'
15+
ruby-version: '3.3'
1616
bundler-cache: true
1717
- name: rubocop
1818
uses: reviewdog/action-rubocop@v2
@@ -25,9 +25,9 @@ jobs:
2525
strategy:
2626
matrix:
2727
ruby:
28-
- '3.0'
2928
- '3.1'
3029
- '3.2'
30+
- '3.3'
3131
name: RSpec tests ruby ${{ matrix.ruby }}
3232
steps:
3333
- name: Check out code
@@ -45,7 +45,7 @@ jobs:
4545
uses: actions/checkout@v4
4646
- uses: ruby/setup-ruby@v1
4747
with:
48-
ruby-version: '3.0'
48+
ruby-version: '3.3'
4949
bundler-cache: true
5050
- name: Run RSpec in GITHUB_WORKSPACE
5151
run: '! bundle exec rspec spec/integration/failing_spec.rb'

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
uses: actions/checkout@v4
1212
- uses: ruby/setup-ruby@v1
1313
with:
14-
ruby-version: '3.0'
14+
ruby-version: '3.3'
1515
- name: Replace version by tag value
1616
run: sed -i "s/'[0-9]\.[0-9]\..*'/'${GITHUB_REF##*/}'/" lib/rspec/github/version.rb
1717
- name: Publish to RubyGems

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AllCops:
2-
TargetRubyVersion: 3.0
2+
TargetRubyVersion: 3.1
33
NewCops: enable
44

55
# A top class comment is not needed for this simple gem

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ DEPENDENCIES
5757
rubocop (~> 1.65.1)
5858

5959
BUNDLED WITH
60-
2.2.19
60+
2.6.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ rspec --format RSpec::Github::Formatter --tag ~skip
6262
After checking out the repo, run `bundle install` to install dependencies. Then, run `rake spec` to run the tests.
6363
Publishing a new version is handled by the [publish workflow](.github/workflows/publish.yml). This workflow publishes a GitHub release to [rubygems](https://rubygems.org/) with the version defined in the release.
6464

65-
### Usefull references
65+
### Useful references
6666
- https://help.github.com/en/actions/reference/development-tools-for-github-actions
6767
- https://developer.github.com/apps/quickstart-guides/creating-ci-tests-with-the-checks-api
6868

rspec-github.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
1212
spec.description = 'Formatter for RSpec to show errors in GitHub action annotations'
1313
spec.homepage = 'https://drieam.github.io/rspec-github'
1414
spec.license = 'MIT'
15-
spec.required_ruby_version = Gem::Requirement.new('>= 3.0')
15+
spec.required_ruby_version = Gem::Requirement.new('>= 3.1')
1616

1717
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
1818
spec.metadata['homepage_uri'] = spec.homepage

0 commit comments

Comments
 (0)