From d050b8aed53115aa1916214f24399a4e0a1fdd10 Mon Sep 17 00:00:00 2001 From: Robin Leroy Date: Thu, 12 Sep 2024 02:12:28 +0200 Subject: [PATCH] Unbreak the workflows (#932) actions/upload-artifact v2 to v3 --- .github/workflows/build-jsp.yml | 2 +- .github/workflows/push-jsp-on-tag.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-jsp.yml b/.github/workflows/build-jsp.yml index 7522567e4..3716f9e16 100644 --- a/.github/workflows/build-jsp.yml +++ b/.github/workflows/build-jsp.yml @@ -69,7 +69,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Upload UnicodeJsps.war - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: UnicodeJsps path: UnicodeJsps/target/UnicodeJsps.war diff --git a/.github/workflows/push-jsp-on-tag.yml b/.github/workflows/push-jsp-on-tag.yml index f249ec051..c40255168 100644 --- a/.github/workflows/push-jsp-on-tag.yml +++ b/.github/workflows/push-jsp-on-tag.yml @@ -49,7 +49,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Upload UnicodeJsps.war - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: UnicodeJsps path: UnicodeJsps/target/UnicodeJsps.war