Bump up ruby version #15
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: Run Bundler Audit | |
on: | |
pull_request: | |
jobs: | |
run-bundler_audit: | |
name: Run bundler audit | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
ruby-version: ["3.0"] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby-version }} | |
- name: Install bundle audit | |
run: gem install bundle-audit | |
- name: Update Ruby Advisory Database | |
run: bundle-audit update | |
- name: Run audit | |
run: bundle audit |