From d45be6bba97e08fd33e21b03263aa802bd036515 Mon Sep 17 00:00:00 2001 From: Matthias Goudjil Date: Fri, 27 Sep 2024 17:53:28 +0200 Subject: [PATCH] chore: [ci/cd] - upgrade actions/upload(download)-artifact to v4 --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c6de5d8e..e8f7f956 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -52,7 +52,7 @@ jobs: rm webpack.config.js - name: Create & Upload artifact - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: ${{ github.event.repository.name }} path: ./ @@ -62,7 +62,7 @@ jobs: if: github.event_name == 'push' && github.event.ref == 'refs/heads/master' steps: - name: Download artifact - uses: actions/download-artifact@v1 + uses: actions/download-artifact@v4 with: name: ${{ github.event.repository.name }}