From 309e6e5056843daaa866f54457bf55c8b0fb31c1 Mon Sep 17 00:00:00 2001 From: Sebastian Heppner Date: Wed, 11 Dec 2024 08:34:38 +0100 Subject: [PATCH] .github/workflows: Update Artifact Actions Currently, we're running the GitHub Artifact Actions v3 or lower, which will be deprecated by 2025-01-31, as noticed in [this blog post]. This updates the actions to version 4 in order to avoid workflow failure. [this blog post]: https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/ --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8346825..1cb2f89 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -38,7 +38,7 @@ jobs: # Uploads artifact - name: Upload Artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: exe path: build/server.exe