From ae882352e205740c6fe49e83d7bc2c11a5b0d289 Mon Sep 17 00:00:00 2001 From: Alrik Firl Date: Fri, 1 Nov 2024 10:31:41 -0700 Subject: [PATCH] in #9 we updated the download-artifact action, but neglected to upate the upload-artifact action, which led to incompatible versions being used --- .github/workflows/build-docs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index 3f3248c..842acb4 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -14,7 +14,7 @@ jobs: - name: Build Jekyll uses: actions/jekyll-build-pages@v1 - name: Upload Jekyll Artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4.4.0 with: name: jekyll-site path: _site @@ -29,7 +29,7 @@ jobs: with: lfs: 'true' - name: Download Jekyll Artifact - uses: actions/download-artifact@v4.1.7 + uses: actions/download-artifact@v4.1.8 with: name: jekyll-site path: _site