From 77b88dbe71d1621e4eb844e7e9f4b8f42001ee61 Mon Sep 17 00:00:00 2001 From: Kartik Pradeepan Date: Mon, 30 Sep 2024 14:14:21 -0400 Subject: [PATCH] Update user_notification_system.yml to use upload/download-artifact@v4 Similar to previous PR for triggering scoring runs, this workflow also needs to be updated to use upload-artifact@v4 and download-artifact@v4 --- .github/workflows/user_notification_system.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/user_notification_system.yml b/.github/workflows/user_notification_system.yml index 9701bf37d..400db8874 100644 --- a/.github/workflows/user_notification_system.yml +++ b/.github/workflows/user_notification_system.yml @@ -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 @@ -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