From bb6857fe516c3f7accd52726f4ee1341706a5331 Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Sun, 15 Sep 2024 10:35:37 -0400 Subject: [PATCH] CI: Bump to upload-artifact v4. Version 1 is deprecated and now fails when run: https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/ --- .github/workflows/make.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/make.yml b/.github/workflows/make.yml index 14836165..7f2987b6 100644 --- a/.github/workflows/make.yml +++ b/.github/workflows/make.yml @@ -44,12 +44,12 @@ jobs: fi echo "VERSION=$VERSION" >> $GITHUB_OUTPUT - name: Upload Freedoom - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: path: "artifacts/freedoom" name: freedoom-${{steps.buildstep.outputs.VERSION}} - name: Upload Freedm - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: path: "artifacts/freedm" name: freedm-${{steps.buildstep.outputs.VERSION}}