From fab017db3ccab08b22aac9083eaba9af38f7506e Mon Sep 17 00:00:00 2001 From: Andrew Jones Date: Mon, 17 Feb 2025 17:08:56 +0100 Subject: [PATCH] Switch to v4 of upload-artifact v3 is no longer supported. See [1]. Link: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/ [1] Signed-off-by: Andrew Jones --- .github/workflows/build-pdf.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-pdf.yml b/.github/workflows/build-pdf.yml index b7be4dd..06f4b4d 100644 --- a/.github/workflows/build-pdf.yml +++ b/.github/workflows/build-pdf.yml @@ -52,7 +52,7 @@ jobs: # Step 4: Upload the built PDF files as a single artifact - name: Upload Build Artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: Build Artifacts path: ${{ github.workspace }}/*.pdf