Skip to content

Commit 645a14a

Browse files
committed
Fix: CI.
1 parent 240f3e0 commit 645a14a

File tree

9 files changed

+136
-134
lines changed

9 files changed

+136
-134
lines changed

.github/workflows/rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ jobs:
88
- name: Set up Ruby
99
uses: ruby/setup-ruby@v1
1010
with:
11-
ruby-version: 3.3.3
11+
ruby-version: '3.4'
1212
bundler-cache: true
1313
- run: bundle exec rubocop

.github/workflows/test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
- { ruby: '3.1', file: rails_7 }
1717
- { ruby: '3.2', file: rails_7 }
1818
- { ruby: '3.3', file: rails_7 }
19+
- { ruby: '3.4', file: rails_7 }
1920
# - { ruby: '3.2' ,file: rails_edge }
2021
steps:
2122
- uses: actions/checkout@v3
@@ -27,10 +28,10 @@ jobs:
2728
- name: Setup Firefox
2829
uses: browser-actions/setup-firefox@latest
2930
with:
30-
firefox-version: "101.0"
31+
firefox-version: "134.0.1"
3132
- uses: browser-actions/setup-geckodriver@latest
3233
with:
33-
geckodriver-version: "0.31.0"
34+
geckodriver-version: "0.32.2"
3435
- name: Setup database configuration
3536
run: cp config/database.gha.yml config/database.yml
3637
- uses: harmon758/postgresql-action@v1

.rubocop_todo.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This configuration was generated by
22
# `rubocop --auto-gen-config`
3-
# on 2024-08-31 12:33:26 UTC using RuboCop version 1.62.1.
3+
# on 2025-02-20 15:13:07 UTC using RuboCop version 1.62.1.
44
# The point is for the user to remove these configuration records
55
# one by one as the offenses are removed from the code base.
66
# Note that changes in the inspected code, or installation of new
@@ -24,7 +24,7 @@ RSpec/EmptyExampleGroup:
2424
RSpec/ExampleLength:
2525
Max: 22
2626

27-
# Offense count: 5
27+
# Offense count: 6
2828
RSpec/MultipleExpectations:
2929
Max: 2
3030

Gemfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
source 'https://rubygems.org'
22
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
33

4+
gem 'logger'
5+
46
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
57
gem 'rails', '~> 7.0.8'
68

0 commit comments

Comments
 (0)