From 1829a554c81e495d55bcf6285f9029f17f33fb5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Dequ=C3=A8nes=20=28Duck=29?= Date: Wed, 11 Sep 2024 01:16:43 +0900 Subject: [PATCH] Bump artifacts actions to v4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit dependabot suggested bumping download-artifact only but both need to have compatible versions. Signed-off-by: Marc Dequènes (Duck) --- .github/workflows/preview.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml index fb4bd4b3652..92d323933c9 100644 --- a/.github/workflows/preview.yml +++ b/.github/workflows/preview.yml @@ -109,7 +109,7 @@ jobs: - name: "Build website" run: docker run --rm --mount type=bind,source=$(pwd),target=/srv/site ovirt-site build - name: "Upload generated content" - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: ovirt-site if-no-files-found: error @@ -137,7 +137,7 @@ jobs: - name: "Create preview build directory" run: mkdir -p "${{needs.build.outputs.PREVIEW_PATH}}" - name: "Download generated content" - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v4 with: name: ovirt-site path: "${{needs.build.outputs.PREVIEW_PATH}}"