Skip to content

Bump bootsnap from 1.19.0 to 1.20.1 #791

Bump bootsnap from 1.19.0 to 1.20.1

Bump bootsnap from 1.19.0 to 1.20.1 #791

Workflow file for this run

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