From 2cb4dcfc5a44966aa993cbc3bb510dc6b7b6572f Mon Sep 17 00:00:00 2001 From: Jeffrey Cafferata Date: Mon, 5 Feb 2024 13:48:26 +0100 Subject: [PATCH] CICD: Bumps actions/upload-artifact from 3.1.3 to 4.3.0 (#2831) --- .github/workflows/pr_test.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pr_test.yml b/.github/workflows/pr_test.yml index a187cb884..317334697 100644 --- a/.github/workflows/pr_test.yml +++ b/.github/workflows/pr_test.yml @@ -40,9 +40,10 @@ jobs: gotestsum --junitfile ${TEST_RESULTS}/gotestsum-report.xml -- $PACKAGE_NAMES - name: Enforce Go Formatted Code run: "[ `go fmt ./... | wc -l` -eq 0 ]" - - uses: actions/upload-artifact@v3.1.3 + - uses: actions/upload-artifact@v4.3.0 with: - path: "/tmp/test-results" + name: unit-tests + path: $TEST_RESULTS # Stringer is needed because .goreleaser includes "go generate ./..." - name: Install stringer @@ -200,6 +201,7 @@ jobs: echo "Skip test for ${{ matrix.provider }} provider" fi working-directory: integrationTest - - uses: actions/upload-artifact@v3.1.3 + - uses: actions/upload-artifact@v4.3.0 with: - path: "/tmp/test-results" + name: integration-tests-${{ matrix.provider }} + path: $TEST_RESULTS