Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions .github/workflows/bundle-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ jobs:
- name: Run bundle update
run: |
bundle lock --update
git add Gemfile.lock
bundle lock --update --gemfile=steep/Gemfile
git add Gemfile.lock steep/Gemfile.lock

if git diff --cached --exit-code; then
echo "No changes to commit, exiting."
Expand All @@ -50,10 +51,10 @@ jobs:
- name: Create Pull Request
if: env.has_update == 'true'
env:
GH_TOKEN: ${{ ${{ secrets.DEPENDABOT_MERGE_GH_TOKEN }} }}
GH_TOKEN: ${{ secrets.DEPENDABOT_MERGE_GH_TOKEN }}
run: |
gh pr create \
--title 'bundle update (`/Gemfile`)' \
--body "Automated bundle update" \
--title 'bundle update' \
--body "Automated weekly bundle update" \
--head "$(git rev-parse --abbrev-ref HEAD)" \
--base "${{ github.event.repository.default_branch }}"
22 changes: 11 additions & 11 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,17 @@ GEM
public_suffix (>= 2.0.2, < 7.0)
ast (2.4.3)
base64 (0.3.0)
benchmark (0.4.0)
benchmark (0.4.1)
benchmark-ips (2.14.0)
bigdecimal (3.2.2)
concurrent-ruby (1.3.5)
connection_pool (2.5.3)
csv (3.3.4)
csv (3.3.5)
dbm (1.1.0)
diff-lcs (1.6.2)
digest (3.2.0)
drb (2.2.3)
erb (5.0.1)
erb (5.0.2)
extconf_compile_commands_json (0.0.7)
ffi (1.17.2)
ffi (1.17.2-x86_64-linux-gnu)
Expand All @@ -53,7 +53,7 @@ GEM
i18n (1.14.7)
concurrent-ruby (~> 1.0)
json (2.12.2)
json-schema (5.1.1)
json-schema (5.2.1)
addressable (~> 2.8)
bigdecimal (~> 3.1)
language_server-protocol (3.17.0.5)
Expand All @@ -73,7 +73,7 @@ GEM
nkf (0.2.0)
nokogiri (1.18.8-x86_64-linux-gnu)
racc (~> 1.4)
ostruct (0.6.1)
ostruct (0.6.2)
parallel (1.27.0)
parser (3.3.8.0)
ast (~> 2.4.1)
Expand All @@ -96,15 +96,15 @@ GEM
rb-fsevent (0.11.2)
rb-inotify (0.11.1)
ffi (~> 1.0)
rdoc (6.14.0)
rdoc (6.14.2)
erb
psych (>= 4.0.0)
regexp_parser (2.10.0)
rspec (3.13.1)
rspec-core (~> 3.13.0)
rspec-expectations (~> 3.13.0)
rspec-mocks (~> 3.13.0)
rspec-core (3.13.4)
rspec-core (3.13.5)
rspec-support (~> 3.13.0)
rspec-expectations (3.13.5)
diff-lcs (>= 1.2.0, < 2.0)
Expand All @@ -113,18 +113,18 @@ GEM
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.13.0)
rspec-support (3.13.4)
rubocop (1.75.8)
rubocop (1.78.0)
json (~> 2.3)
language_server-protocol (~> 3.17.0.2)
lint_roller (~> 1.1.0)
parallel (~> 1.10)
parser (>= 3.3.0.2)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 2.9.3, < 3.0)
rubocop-ast (>= 1.44.0, < 2.0)
rubocop-ast (>= 1.45.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 4.0)
rubocop-ast (1.44.1)
rubocop-ast (1.46.0)
parser (>= 3.3.7.2)
prism (~> 1.4)
rubocop-on-rbs (1.8.0)
Expand Down Expand Up @@ -163,7 +163,7 @@ GEM
tempfile (0.3.1)
terminal-table (4.0.0)
unicode-display_width (>= 1.1.1, < 4)
test-unit (3.6.8)
test-unit (3.7.0)
power_assert
timeout (0.4.3)
tzinfo (2.0.6)
Expand Down
Loading