From 844286fde0e8737611f6f22c18f89924c430dfdc Mon Sep 17 00:00:00 2001 From: icex2 Date: Sat, 8 Feb 2025 23:59:23 +0100 Subject: [PATCH] fix: Update upload-artifact from v2 to v4 to address deprecation v2 was deprecated a while ago and actions don't support it since end of June. Migration to v4 is required to enable github actions again --- .github/workflows/build-master.yaml | 2 +- .github/workflows/build-tag.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-master.yaml b/.github/workflows/build-master.yaml index 2f4b64d..32e7e53 100644 --- a/.github/workflows/build-master.yaml +++ b/.github/workflows/build-master.yaml @@ -30,7 +30,7 @@ jobs: cd .. - name: "Upload artifact" - uses: "actions/upload-artifact@v2" + uses: "actions/upload-artifact@v4" with: name: bemanitools-${{ github.sha }} retention-days: 90 diff --git a/.github/workflows/build-tag.yaml b/.github/workflows/build-tag.yaml index 18d2d40..2ff9250 100644 --- a/.github/workflows/build-tag.yaml +++ b/.github/workflows/build-tag.yaml @@ -35,7 +35,7 @@ jobs: cd .. - name: "Upload artifact" - uses: "actions/upload-artifact@v2" + uses: "actions/upload-artifact@v4" with: name: bemanitools-${{ github.sha }} retention-days: 90