Skip to content

build(deps): bump image_processing from 1.12.2 to 1.13.0 #2763

build(deps): bump image_processing from 1.12.2 to 1.13.0

build(deps): bump image_processing from 1.12.2 to 1.13.0 #2763

Workflow file for this run

name: Ruby lint CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
env:
BUNDLE_WITHOUT: development
steps:
- uses: actions/checkout@v4
- name: Set up Ruby 3.2.2
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.2
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