Skip to content

Commit

Permalink
Update user_notification_system.yml to use upload/download-artifact@v4
Browse files Browse the repository at this point in the history
Similar to previous PR for triggering scoring runs, this workflow also needs to be updated to use upload-artifact@v4 and download-artifact@v4
  • Loading branch information
KartikP authored Sep 30, 2024
1 parent 35c1dbe commit 77b88db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/user_notification_system.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:

- name: Upload email as artifact
if: inputs.action_type == 'send_email'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: email-artifact
path: email.txt
Expand All @@ -129,7 +129,7 @@ jobs:
fetch-depth: 0

- name: Download email artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: email-artifact

Expand Down

0 comments on commit 77b88db

Please sign in to comment.