Bump ruby from 3.4.8-alpine to 4.0.3-alpine #618
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Bundler Audit | |
| on: | |
| pull_request: | |
| jobs: | |
| bundler-audit: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| ruby: | |
| - 3.4.8 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: ${{ matrix.ruby }} | |
| bundler-cache: true | |
| - name: Run bundler audit | |
| run: | | |
| bundle exec rake bundler:audit:update | |
| bundle exec rake bundler:audit:check |