From 979a582b8e5fe9d24f1d0232a4d001e0ed2e19e6 Mon Sep 17 00:00:00 2001 From: Selene ToyKeeper Date: Sat, 10 May 2025 03:52:30 -0600 Subject: fix "Error: Missing download info for actions/upload-artifact@v3" Apparently that got deprecated and removed. Seems like something GitHub should maybe notify users about before removing it, instead of finding out through a build failure plus googling the error message. But it seems to be a trivial fix, at least. https://github.com/orgs/community/discussions/152695 --- .github/workflows/compile.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github/workflows') diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml index c77ac85..629f7e1 100644 --- a/.github/workflows/compile.yml +++ b/.github/workflows/compile.yml @@ -52,7 +52,7 @@ jobs: echo "ARTIFACT_NAME=${GITHUB_WORKFLOW}-$(git rev-parse --short ${GITHUB_SHA})-${GITHUB_RUN_NUMBER}" >> "${GITHUB_ENV}" - name: Store Artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ${{ env.ARTIFACT_NAME }} if-no-files-found: error -- cgit v1.2.3