Skip to content

Commit e01288c

Browse files
committedFeb 20, 2025
Fix: CI.
1 parent 240f3e0 commit e01288c

9 files changed

+142
-140
lines changed
 

‎.github/workflows/rubocop.yml

+1-1
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

+3-2
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

+2-2
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:23:50 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

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
source 'https://rubygems.org'
22
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
33

4+
# https://stackoverflow.com/questions/79360526/uninitialized-constant-activesupportloggerthreadsafelevellogger-nameerror
5+
gem 'concurrent-ruby', '1.3.4'
6+
47
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
58
gem 'rails', '~> 7.0.8'
69

@@ -78,5 +81,5 @@ group :test do
7881
gem 'rubocop-rake'
7982
gem 'rubocop-rspec'
8083
gem 'rubocop-rspec_rails'
81-
gem 'selenium-webdriver'
84+
gem 'selenium-webdriver', '4.20'
8285
end

0 commit comments

Comments
 (0)