From d44624c9c07b3a5330c4429133e7844713a41e2e Mon Sep 17 00:00:00 2001 From: Gary Ewan Park Date: Mon, 23 Sep 2024 10:55:57 -0500 Subject: [PATCH] (build) Update action version v2 of the upload-artifact action is now deprecated, and the recommendation is to move to using v4: https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/ --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2f700f481..7e6737b7a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -40,15 +40,15 @@ jobs: ./build.ps1 --target=CI - name: Upload Issues-Report - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: if-no-files-found: warn name: issues path: code_drop/issues-report.html - name: Upload Packages - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: if-no-files-found: warn name: package - path: code_drop/Packages/**/* \ No newline at end of file + path: code_drop/Packages/**/*