🚨 [security] Update rubocop-rspec 2.14.1 → 3.0.2 (major) #99
Workflow file for this run
This file contains 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: Code Quality | |
on: [ pull_request ] | |
jobs: | |
rubocop: | |
name: Rubocop | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Install Ruby & Gems | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.7 | |
bundler-cache: true | |
- name: Rubocop | |
# https://github.com/reviewdog/action-rubocop | |
uses: reviewdog/action-rubocop@v2 | |
with: | |
fail_on_error: true | |
filter_mode: nofilter | |
github_token: ${{ secrets.github_token }} | |
reporter: github-pr-review | |
rubocop_version: gemfile | |
rubocop_flags: --display-only-fail-level-offenses --safe | |
# Rely on Bundler-installed gems so don't install them again | |
use_bundler: true | |
skip_install: true |