From 41cdc8f2f5231f59d8fdbb2c0eecc737fd193a9c Mon Sep 17 00:00:00 2001 From: David Adler <63927781+trutzig89182@users.noreply.github.com> Date: Fri, 28 Feb 2025 10:34:47 +0100 Subject: [PATCH] Update build.yml actions/upload-pages-artifact to v3 instead of v1, because the page build currently fails with warning: "his request has been automatically failed because it uses a deprecated version of `actions/upload-artifact: v3`. Learn more: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/" --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dbb8e777..4853b71b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -48,7 +48,7 @@ jobs: - name: Setup Pages uses: actions/configure-pages@v2 - name: Upload artifact - uses: actions/upload-pages-artifact@v1 + uses: actions/upload-pages-artifact@v3 with: # Upload the "dist" directory path: './dist'