We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a67f284 commit b6c2ef4Copy full SHA for b6c2ef4
1 file changed
.github/workflows/baseline.yml
@@ -1,8 +1,6 @@
1
name: Security Baseline
2
3
on:
4
- push:
5
- branches: [ main ]
6
workflow_dispatch:
7
8
jobs:
@@ -16,12 +14,11 @@ jobs:
16
14
- name: Run security baseline assertions
17
15
shell: pwsh
18
run: |
19
- pwsh -NoProfile -ExecutionPolicy Bypass `
20
- -File scripts/assert-security-baseline.ps1
+ Write-Host "Running security baseline assertions..."
+ ./scripts/assert-security-baseline.ps1
21
22
- - name: Enforce minimum security posture
23
- shell: pwsh
24
- run: |
25
26
- -File scripts/enforce-minimum-score.ps1 `
27
- -MinimumScore 90
+ - name: Upload assertions artifact
+ uses: actions/upload-artifact@v4
+ with:
+ name: security-baseline-assertions
+ path: docs/audit/2026-01/assertions.json
0 commit comments