From 0b1b6219e111f10e829a90350b6ed2b12446462a Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Wed, 10 Jan 2024 13:39:17 +0100 Subject: [PATCH] ci: unique artifact name for junit reports in kind workflow Due to some recent changes on GitHub's side, uploading the JUnit reports on the second job to finish in the kind workflow will fail with: Error: Failed to CreateArtifact: Received non-retryable error: Failed request: (409) Conflict: an artifact with this name already exists on the workflow run Avoid this from happing by giving the artifacts unique names. Fixes #2222 Signed-off-by: Tobias Klauser --- .github/workflows/kind.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/kind.yaml b/.github/workflows/kind.yaml index f172762435..6f8ea5aaba 100644 --- a/.github/workflows/kind.yaml +++ b/.github/workflows/kind.yaml @@ -339,7 +339,7 @@ jobs: if: ${{ always() }} uses: actions/upload-artifact@c7d193f32edcb7bfad88892161225aeda64e9392 # v4.0.0 with: - name: cilium-junits + name: cilium-junits-helm-upgrade-clustermesh path: cilium-junit*.xml retention-days: 2