From 2086139fd52406272b9b200d16c14837cb5109b5 Mon Sep 17 00:00:00 2001 From: Russ Allbery Date: Wed, 3 Jan 2024 11:46:39 -0800 Subject: [PATCH] Update artifact actions Update actions/upload-artifact and actions/download-artifact together in the same PR, since the older versions and newer versions apparently do not interoperate. --- .github/workflows/ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2458805b9..3c94dbd19 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -75,7 +75,7 @@ jobs: # artifact internally in this workflow, so only keep it for a day, # not the full 90 day default. - name: Cache UI artifact - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ui path: ui/public @@ -96,7 +96,7 @@ jobs: # Reuse the built UI from the ui job. - name: Restore UI artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: ui path: ui/public @@ -197,7 +197,7 @@ jobs: # Reuse the built UI from the ui job. - name: Restore UI artifact - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: ui path: ui/public