From 9ec696ff1d45715d4b7a2fbf282eb47e4afd5245 Mon Sep 17 00:00:00 2001 From: Jan Calanog Date: Tue, 10 Sep 2024 11:24:40 +0200 Subject: [PATCH] Bump actions/upload-artifact to v4 --- .github/workflows/test.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2ee5c8d3..3207b851 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -61,9 +61,9 @@ jobs: - name: Store test results if: success() || failure() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: test-results + name: test-results-windows path: build/output/junit-*.xml test-linux: @@ -79,7 +79,7 @@ jobs: - name: Store test results if: success() || failure() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: test-results - path: build/output/junit-*.xml \ No newline at end of file + name: test-results-linux + path: build/output/junit-*.xml