From 969766e17f02add2f2518205405474f424053223 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Quenaudon?= Date: Tue, 3 Feb 2026 16:15:16 +0000 Subject: [PATCH] Bump actions/upload-artifact to v4 --- .github/workflows/gradle.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 6c9b32f..2403a66 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -20,25 +20,25 @@ jobs: run: ./gradlew --no-daemon build - name: Archive protogram test results if: always() - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: protogram-report path: protogram/build/reports/tests/allTests - name: Archive tinsel test results if: always() - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: tinsel-report path: tinsel/build/reports/tests/allTests - name: Archive test test results if: always() - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: test-report path: test/build/reports/tests/allTests - name: Archive cli test results if: always() - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: cli-report path: cli/build/reports/tests/test