Skip to content

Commit

Permalink
fixing bundler output
Browse files Browse the repository at this point in the history
  • Loading branch information
niquerio committed Jun 7, 2024
1 parent 5ca4dab commit 8c45cc4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/update-dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,11 @@ jobs:
BUNDLE_RUBYGEMS__PKG__GITHUB__COM: ${{ secrets.GITHUB_TOKEN }}
- name: Get gems to update
continue-on-error: true
run: |
bundle outdated > /tmp/bundle_summary.txt
run: bundle outdated > /tmp/bundle_summary.txt
- name: clean up bundle_summary.txt
run: |
sed -i -n '/^Gem\s.*Current/,$p' /tmp/bundle_summary.txt
cat /tmp/bundle_summary.txt
- name: Update bundler
run: bundle update --bundler
- name: Update gems
Expand Down

0 comments on commit 8c45cc4

Please sign in to comment.