File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -121,6 +121,11 @@ jobs:
121121 POSTGRES_USER : root
122122 POSTGRES_PASSWORD : root
123123 steps :
124+ - name : Generate throwaway secret_key_base
125+ run : |
126+ mkdir -p /run/secrets
127+ bundle exec rails secret > /run/secrets/SECRET_KEY_BASE
128+
124129 - name : Run tests
125130 env :
126131 RAILS_ENV : test
@@ -132,7 +137,6 @@ jobs:
132137 - name : Validate database migrations
133138 env :
134139 RAILS_ENV : production
135- SECRET_KEY_BASE : dummy
136140 DISABLE_DATABASE_ENVIRONMENT_CHECK : 1
137141 run : bundle exec rails --trace db:drop db:create db:migrate
138142
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ gem 'pg', '~> 1.4'
1919gem 'pg_search' , '~> 2.3'
2020gem 'puma' , '~> 7.2'
2121gem 'rack-cors'
22- gem 'rails' , '~> 8.0.4 '
22+ gem 'rails' , '~> 8.0.5 '
2323gem 'ransack' , '~> 4.2'
2424gem 'zaru' , '~> 0.3.0'
2525
Original file line number Diff line number Diff line change 9797 berkeley_library-logging (~> 0.3 )
9898 rest-client (~> 2.1 )
9999 typesafe_enum (~> 0.3 )
100- bigdecimal (4.0.1 )
100+ bigdecimal (4.1.0 )
101101 brakeman (7.1.0 )
102102 racc
103103 builder (3.3.0 )
416416PLATFORMS
417417 aarch64-linux-gnu
418418 arm64-darwin-23
419+ ruby
419420 x86_64-linux
420421 x86_64-unknown
421422
@@ -442,7 +443,7 @@ DEPENDENCIES
442443 pg_search (~> 2.3 )
443444 puma (~> 7.2 )
444445 rack-cors
445- rails (~> 8.0.4 )
446+ rails (~> 8.0.5 )
446447 rails-controller-testing
447448 ransack (~> 4.2 )
448449 rspec (~> 3.13 )
@@ -458,7 +459,7 @@ DEPENDENCIES
458459 zaru (~> 0.3.0 )
459460
460461RUBY VERSION
461- ruby 3.3.9p170
462+ ruby 3.3.11p205
462463
463464BUNDLED WITH
464- 2.7.2
465+ 2.7.2
Original file line number Diff line number Diff line change 1010#
1111# It's strongly recommended that you check this file into your version control system.
1212
13- ActiveRecord ::Schema [ 7 .0] . define ( version : 2025_10_01_223022 ) do
13+ ActiveRecord ::Schema [ 8 .0] . define ( version : 2025_10_01_223022 ) do
1414 # These are extensions that must be enabled in order to support this database
15- enable_extension "plpgsql"
15+ enable_extension "pg_catalog. plpgsql"
1616
1717 create_table "closures" , force : :cascade do |t |
1818 t . date "start_date" , null : false
You can’t perform that action at this time.
0 commit comments