Skip to content

Commit

Permalink
Try bumping Ruby to 3.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
peteryates committed Nov 16, 2023
1 parent c6d3515 commit 1e93e64
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ name: Deploy to GitHub pages
on:
push:
branches: [ main ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ main ]
# pull_request:
# # The branches below must be a subset of the branches above
# branches: [ main ]
schedule:
- cron: '0 6 * * *'
workflow_dispatch:
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: '3.1.2'
ruby-version: '3.2.2'

- name: Install rails-erd
run: |
Expand Down Expand Up @@ -175,6 +175,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Pull changes
run: git pull --rebase origin main

- name: Get diagrams
uses: actions/download-artifact@v2
with:
Expand All @@ -187,7 +190,6 @@ jobs:
git config user.email [email protected]
git add .
git commit -m "updated entity relationship diagram"
git pull --rebase
git push
build-and-push:
Expand Down Expand Up @@ -217,7 +219,7 @@ jobs:
uses: ruby/[email protected]
with:
bundler-cache: true
ruby-version: '3.1.2'
ruby-version: '3.2.2'

- name: Validate C4 Models
run: ./bin/c4-validate.sh
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
uses: ruby/[email protected]
with:
bundler-cache: true
ruby-version: '3.1.2'
ruby-version: '3.2.2'

- name: Unlock bundler
run: bundle config unset deployment
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.2
3.2.2
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# the following line to use "http://"
source "https://rubygems.org"

ruby "3.1.2"
ruby "3.2.2"

# Windows support
gem "tzinfo-data", platforms: %i[mswin mingw jruby]
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ DEPENDENCIES
webmock

RUBY VERSION
ruby 3.1.2p20
ruby 3.2.2p53

BUNDLED WITH
2.3.14

0 comments on commit 1e93e64

Please sign in to comment.