From 57f7753d79c1cee8cebd02acc25e2670efc7f2d4 Mon Sep 17 00:00:00 2001 From: Yousaf Nabi Date: Tue, 23 Apr 2024 18:38:29 +0100 Subject: [PATCH] ci(fix): provide unique name for upload artifact now errors in v4 as each run would clobber artifacts --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7cfffbd0b..87a04f085 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -42,9 +42,9 @@ jobs: run: go install github.com/mattn/goveralls@latest - name: Send coverage run: goveralls -coverprofile=coverage.txt -service=github -parallel - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v3 with: - name: logs-${{ github.job }}-${{ github.run_id }}-${{ github.run_attempt }}.zip + name: logs-${{ github.job }}-${{ github.run_id }}-${{ github.run_attempt }}-${{ matrix.go-version }}.zip path: ~/.pact/plugins/**/plugin.log if: ${{ always() }}