Merge branch 'release-148' into dg/acl_reports-7121 #18207
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: Bundle Audit and Brakeman | |
on: | |
push: | |
branches: | |
- '*' | |
- '**/*' | |
concurrency: | |
group: ${{ github.ref }}-audit | |
cancel-in-progress: true | |
jobs: | |
# Label of the container job | |
audit: | |
# Containers must run in Linux based operating systems | |
runs-on: ubuntu-20.04 | |
# Docker Hub image that the job executes in | |
container: ruby:3.1.6-alpine3.20 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: 'Container Setup' | |
id: container-setup | |
uses: ./.github/workflows/container_setup | |
- name: Run bundle-audit | |
run: | | |
bundle exec bundle-audit check --update | |
- name: Run brakeman | |
run: | | |
bundle exec brakeman -q --no-pager |