From 451e4a184a3b5fb494e0d2c4c48315b1d2026340 Mon Sep 17 00:00:00 2001 From: AxtelSturnclaw <4218491+sturnclaw@users.noreply.github.com> Date: Sat, 1 Feb 2025 14:39:39 -0500 Subject: [PATCH] Update naturaldocs.yml Fix build failure with the deprecation of upload-artifact@v3 --- .github/workflows/naturaldocs.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/naturaldocs.yml b/.github/workflows/naturaldocs.yml index bd29babebd..96cc5262ec 100644 --- a/.github/workflows/naturaldocs.yml +++ b/.github/workflows/naturaldocs.yml @@ -62,7 +62,7 @@ jobs: mono Natural\ Docs/NaturalDocs.exe -i . -o HTML docs -p nd - name: Upload artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: "Lua API documentation" path: docs @@ -71,11 +71,11 @@ jobs: uses: actions/configure-pages@v3 - name: Upload pages - uses: actions/upload-pages-artifact@v1 + uses: actions/upload-pages-artifact@v3 with: # only upload docs/ folder path: 'docs' - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v1 + uses: actions/deploy-pages@v4