From 8c45cc489b11c17622fb9038a7e447709e6f780f Mon Sep 17 00:00:00 2001 From: Monique Rio Date: Fri, 7 Jun 2024 15:00:36 -0400 Subject: [PATCH] fixing bundler output --- .github/workflows/update-dependencies.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update-dependencies.yaml b/.github/workflows/update-dependencies.yaml index a01c3c6..c9e0efb 100644 --- a/.github/workflows/update-dependencies.yaml +++ b/.github/workflows/update-dependencies.yaml @@ -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