Skip to content

Commit

Permalink
Update upload / download artifact to v4 in kernelctf-submission-verif…
Browse files Browse the repository at this point in the history
…ication.yaml
  • Loading branch information
artmetla authored Sep 25, 2024
1 parent 54fe516 commit ebe282b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/kernelctf-submission-verification.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,15 +82,15 @@ jobs:
- name: Upload exploit (newly compiled)
if: success()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: exploit_${{ env.RELEASE_ID }}
path: ${{ env.EXPLOIT_DIR }}/exploit
if-no-files-found: error

- name: Upload exploit (original, build failed)
if: failure() && steps.build_exploit.outcome == 'failure'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: exploit_${{ env.RELEASE_ID }}
path: ./exploit
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
sudo udevadm trigger --name-match=kvm
- name: Download exploit
uses: actions/download-artifact@v4.1.7
uses: actions/download-artifact@v4
with:
name: exploit_${{ env.RELEASE_ID }}
path: ./kernelctf/repro/exp/
Expand Down

0 comments on commit ebe282b

Please sign in to comment.