Bump bootsnap from 1.19.0 to 1.20.1 #791
Workflow file for this run
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: Checks | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| brakeman: | |
| runs-on: ubuntu-latest | |
| env: | |
| # Do not install production/staging-only gems in test environment | |
| BUNDLE_WITHOUT: "production staging default test" | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: .tool-versions | |
| bundler-cache: true | |
| - name: Scan for security vulnerabilities | |
| run: bin/brakeman | |
| lint: | |
| runs-on: ubuntu-24.04 | |
| env: | |
| # Do not install production/staging-only gems in test environment | |
| BUNDLE_WITHOUT: "production staging default test" | |
| name: Ruby Linting | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Ruby | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: .tool-versions | |
| bundler-cache: true | |
| - name: Run RuboCop | |
| run: bin/rubocop |