Skip to content

Commit 8dbb173

Browse files
committed
[INTERNAL] Audit CI: Enable check on main branch
Also checking the main branch to be notified about vulnerabilities based on the released packages. Although the main branch is covered by GitHub security checks and dependabot updates, it could be missed that some vulnerabilities have been solved already but not released yet. Also removing the unnecessary "npm install". Audit CI checks based on the existing lockfile.
1 parent 42fc9b3 commit 8dbb173

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

.github/workflows/security-audit.yml

+2-5
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,13 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
branch: ["v3"] # List of branches to run the security audit uppon
13+
branch: ["main", "v3"] # List of branches to run the security audit on
1414

1515
steps:
1616
- name: Checkout '${{ matrix.branch }}' branch
1717
uses: actions/checkout@v4
1818
with:
1919
ref: ${{ matrix.branch }}
2020

21-
- name: install dependencies
22-
run: npm ci
23-
2421
- name: Use audit-ci
25-
run: npx audit-ci@^6 --config ./audit-ci.jsonc
22+
run: npx audit-ci@^7 --config ./audit-ci.jsonc

audit-ci.jsonc

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
// $schema provides code completion hints to IDEs.
3+
"$schema": "https://github.com/IBM/audit-ci/raw/main/docs/schema.json",
4+
"low": true,
5+
"allowlist": []
6+
}

0 commit comments

Comments
 (0)