Skip to content

Commit a78077d

Browse files
committed
fix: add persist-credentials: false to checkout step
Addresses artipacked security warning about credential persistence through GitHub Actions artifacts. This prevents git credentials from being persisted in the workspace.
1 parent d2a55c6 commit a78077d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/classify-issue-severity.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ jobs:
2323
steps:
2424
- name: Checkout repository
2525
uses: actions/checkout@v4
26+
with:
27+
persist-credentials: false
2628

2729
- name: Analyze Issue Severity
2830
id: analysis

0 commit comments

Comments
 (0)