From 6112cafd3f5d1669c981eb428dbe979fa20132de Mon Sep 17 00:00:00 2001 From: Florian Necas Date: Wed, 22 Jan 2025 14:10:04 +0100 Subject: [PATCH] fix: update upload artifact to v4 --- .github/workflows/mapstore.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/mapstore.yml b/.github/workflows/mapstore.yml index d792353c3..e06084183 100644 --- a/.github/workflows/mapstore.yml +++ b/.github/workflows/mapstore.yml @@ -67,7 +67,7 @@ jobs: run: mkdir -p scratch && cp web/target/georchestra-mapstore*.deb scratch/georchestra-mapstore-${{ github.sha }}.deb - name: "publish deb as artifact" - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: georchestra-mapstore.deb path: scratch/georchestra-mapstore-${{ github.sha }}.deb @@ -76,7 +76,7 @@ jobs: run: mkdir -p scratch && cp web/target/mapstore.war scratch/mapstore-${{ github.sha }}.war - name: "publish war as artifact" - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: mapstore.war path: scratch/mapstore-${{ github.sha }}.war