From b0b30e4b975d5ed4f2751041d30eb6479465ec84 Mon Sep 17 00:00:00 2001 From: Ry Jones Date: Wed, 8 Jan 2025 13:32:26 -0800 Subject: [PATCH] chore: update actions actions/upload-artifact and actions/download-artifact have been deprecated and need updated. https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/ Signed-off-by: Ry Jones --- .github/workflows/iroha2-pr.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/iroha2-pr.yml b/.github/workflows/iroha2-pr.yml index 69e43943..95153321 100644 --- a/.github/workflows/iroha2-pr.yml +++ b/.github/workflows/iroha2-pr.yml @@ -10,7 +10,7 @@ jobs: env: IROHA_IMAGE_TAG: "2.0.0-pre-rc.22.2" # Place "dev" to run on the last iroha steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up JDK 17 uses: actions/setup-java@v3 with: @@ -29,7 +29,7 @@ jobs: run: ./gradlew build --info - name: Upload build reports if: failure() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: build-reports path: /home/runner/work/iroha-java/iroha-java/**/index.html