Skip to content

Commit 5d6a5d5

Browse files
committed
Add change notes and test workflow file.
1 parent f4f9196 commit 5d6a5d5

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
category: fix
3+
---
4+
* The `actions/artifact-poisoning/critical` and `actions/artifact-poisoning/medium` queries now exclude artifacts downloaded to `$[{ runner.temp }}` in addition to `/tmp`.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Secure Workflow
2+
3+
on:
4+
workflow_run:
5+
workflows: ["Prev"]
6+
types:
7+
- completed
8+
9+
jobs:
10+
Download:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
- run: mkdir -p ${{ runner.temp }}/artifacts/
15+
- uses: dawidd6/action-download-artifact@v2
16+
with:
17+
name: pr_number
18+
path: ${{ runner.temp }}/artifacts/
19+
20+
- name: Run command
21+
run: |
22+
sh cmd.sh

0 commit comments

Comments
 (0)