Skip to content

build(deps): Bump bootstrap from 4.6.2 to 4.6.2.1 #1527

build(deps): Bump bootstrap from 4.6.2 to 4.6.2.1

build(deps): Bump bootstrap from 4.6.2 to 4.6.2.1 #1527

Workflow file for this run

name: Ruby lint CI
on:
pull_request:
branches: [ master, production ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Ruby 3.3.0
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3.0
bundler-cache: true
- name: Run static code analysis using rubocop
run: |
bash -c "
bundle exec rubocop --require code_scanning --format CodeScanning::SarifFormatter -o rubocop.sarif
[[ $? -ne 2 ]]
"
- name: Upload Sarif output
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: rubocop.sarif