CICD: Bumps actions/upload-artifact from 3.1.3 to 4.3.0 (#2831)

This commit is contained in:
Jeffrey Cafferata 2024-02-05 13:48:26 +01:00 committed by GitHub
parent 139cc2826f
commit 2cb4dcfc5a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -40,9 +40,10 @@ jobs:
gotestsum --junitfile ${TEST_RESULTS}/gotestsum-report.xml -- $PACKAGE_NAMES gotestsum --junitfile ${TEST_RESULTS}/gotestsum-report.xml -- $PACKAGE_NAMES
- name: Enforce Go Formatted Code - name: Enforce Go Formatted Code
run: "[ `go fmt ./... | wc -l` -eq 0 ]" run: "[ `go fmt ./... | wc -l` -eq 0 ]"
- uses: actions/upload-artifact@v3.1.3 - uses: actions/upload-artifact@v4.3.0
with: with:
path: "/tmp/test-results" name: unit-tests
path: $TEST_RESULTS
# Stringer is needed because .goreleaser includes "go generate ./..." # Stringer is needed because .goreleaser includes "go generate ./..."
- name: Install stringer - name: Install stringer
@ -200,6 +201,7 @@ jobs:
echo "Skip test for ${{ matrix.provider }} provider" echo "Skip test for ${{ matrix.provider }} provider"
fi fi
working-directory: integrationTest working-directory: integrationTest
- uses: actions/upload-artifact@v3.1.3 - uses: actions/upload-artifact@v4.3.0
with: with:
path: "/tmp/test-results" name: integration-tests-${{ matrix.provider }}
path: $TEST_RESULTS