Bump upload-artifact to v7 and download-artifact to v8 #855
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: RuboCop | |
| on: | |
| push: | |
| pull_request: | |
| schedule: | |
| - cron: "0 0 * * *" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Ruby 4.0 | |
| uses: ruby/setup-ruby@v1 | |
| with: | |
| ruby-version: "4.0" | |
| - name: Build and run RuboCop | |
| run: | | |
| BUNDLE_ONLY=rubocop bundle install --jobs 4 --retry 3 | |
| BUNDLE_ONLY=rubocop bundle exec rubocop --parallel |