Skip to content

Merge branch 'release-148' into dg/acl_reports-7121 #18207

Merge branch 'release-148' into dg/acl_reports-7121

Merge branch 'release-148' into dg/acl_reports-7121 #18207

Workflow file for this run

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