From af7bb57082d48f9ba04ae9fa7062a346c0424795 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20D=C4=9Bdi=C4=8D?= Date: Fri, 15 Dec 2023 12:13:26 +0100 Subject: [PATCH] Using v4 of CI artifacts --- .github/workflows/CI.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index b1c67a0e..bb22e0bc 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -70,7 +70,7 @@ jobs: npm run build - name: "Upload artifact" - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: "build-artifact" path: dist @@ -136,7 +136,7 @@ jobs: npm ci - name: "Download build artifact" - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: "build-artifact" path: dist diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index aff54db1..671885ea 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -55,7 +55,7 @@ jobs: npm run build - name: "Upload artifact" - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: "build-artifact" path: dist @@ -66,7 +66,7 @@ jobs: needs: build steps: - name: "Download artifact" - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: "build-artifact" path: ${{ github.event.repository.name }}