Skip to content

Commit

Permalink
misc dependency updates and version bumps
Browse files Browse the repository at this point in the history
  • Loading branch information
gundamu-yunikon committed May 2, 2024
1 parent 7367fd3 commit b1264bd
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
bump-patch-for-minor-pre-major: true

- if: ${{ steps.release.outputs.release_created }}
uses: actions/checkout@v3
uses: actions/checkout@v4

- if: ${{ steps.release.outputs.release_created }}
name: Set up Ruby
Expand Down
7 changes: 2 additions & 5 deletions .github/workflows/update-database.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Update BSB Database & Version
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
Expand All @@ -21,13 +21,10 @@ jobs:
run: bundle exec rake bsb:sync
- id: get-date
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
- uses: peter-evans/create-pull-request@v4
- uses: peter-evans/create-pull-request@v6
id: raise-pr
with:
branch: "bot/${{ steps.get-date.outputs.date }}"
base: master
title: "fix: ${{ steps.get-date.outputs.date }} periodic update of config/*.json database files."
committer: GitHub Actions <[email protected]>
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
signoff: false
delete-branch: true
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.2
3.3.1
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ gemspec
gem 'bundler', '~> 2.0'
gem 'net-ftp', '~> 0.1.3'
gem 'rake', '~> 13.0'
gem 'rubocop', '~> 1.26'
gem 'rubocop'
2 changes: 1 addition & 1 deletion bsb.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ['lib']

spec.required_ruby_version = '>= 2.7.0'
spec.required_ruby_version = '>= 2.7.7'

spec.add_dependency 'activemodel'

Expand Down

0 comments on commit b1264bd

Please sign in to comment.