From 659e49a32cbaf823203c0b82d440fc6d8a05bb68 Mon Sep 17 00:00:00 2001 From: rsmokeUM Date: Thu, 21 Aug 2025 08:30:17 -0400 Subject: [PATCH 1/3] Update Brakeman workflow to prevent exit on warnings during report generation --- .github/workflows/brakeman.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/brakeman.yml b/.github/workflows/brakeman.yml index 638a07f8..7030aae3 100644 --- a/.github/workflows/brakeman.yml +++ b/.github/workflows/brakeman.yml @@ -25,7 +25,7 @@ jobs: bundler-cache: true - name: Run Brakeman - run: bundle exec brakeman -A -q -o tmp/brakeman-report.json + run: bundle exec brakeman -A -q -o --no-exit-on-warn tmp/brakeman-report.json - name: Upload Brakeman report uses: actions/upload-artifact@v4 From 61ac3898fb19f0fd6d4a4f9d915651b59bdab67d Mon Sep 17 00:00:00 2001 From: rsmokeUM Date: Thu, 21 Aug 2025 08:33:04 -0400 Subject: [PATCH 2/3] Update admin list in .git-hooks to reflect new username --- .git-hooks/admins.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.git-hooks/admins.txt b/.git-hooks/admins.txt index 1cc93a0a..a41eab9e 100644 --- a/.git-hooks/admins.txt +++ b/.git-hooks/admins.txt @@ -1 +1 @@ -rsmoke +rsmokeUM From 484440c22b36264e9189e9320fd9f95bfd101b43 Mon Sep 17 00:00:00 2001 From: rsmokeUM Date: Thu, 21 Aug 2025 08:51:54 -0400 Subject: [PATCH 3/3] Update Brakeman workflow to set working directory for report generation --- .github/workflows/brakeman.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/brakeman.yml b/.github/workflows/brakeman.yml index 7030aae3..516d8cee 100644 --- a/.github/workflows/brakeman.yml +++ b/.github/workflows/brakeman.yml @@ -25,6 +25,7 @@ jobs: bundler-cache: true - name: Run Brakeman + working-directory: ${{ github.workspace }} run: bundle exec brakeman -A -q -o --no-exit-on-warn tmp/brakeman-report.json - name: Upload Brakeman report