Skip to content

Commit 528af28

Browse files
Update a couple of items to new versions and tweak git build
1 parent f9bb1e6 commit 528af28

4 files changed

Lines changed: 13 additions & 8 deletions

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff 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

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ gem 'pg', '~> 1.4'
1919
gem 'pg_search', '~> 2.3'
2020
gem 'puma', '~> 7.2'
2121
gem 'rack-cors'
22-
gem 'rails', '~> 8.0.4'
22+
gem 'rails', '~> 8.0.5'
2323
gem 'ransack', '~> 4.2'
2424
gem 'zaru', '~> 0.3.0'
2525

Gemfile.lock

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ GEM
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)
@@ -416,6 +416,7 @@ GEM
416416
PLATFORMS
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

460461
RUBY VERSION
461-
ruby 3.3.9p170
462+
ruby 3.3.11p205
462463

463464
BUNDLED WITH
464-
2.7.2
465+
2.7.2

db/schema.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
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

0 commit comments

Comments
 (0)