From f82ac0c5ae325faf1bbe8ef8db96d2048517123f Mon Sep 17 00:00:00 2001 From: Winni Neessen Date: Sat, 26 Oct 2024 15:52:27 +0200 Subject: [PATCH] Update concurrency group names in GitHub Actions This change modifies the concurrency group names to include OS and Go version for better differentiation. This prevents conflicts and ensures that concurrent jobs are properly managed based on their specific matrices. --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c0f2fd6..4d08c79 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: name: Test with Codecov coverage (${{ matrix.os }} / ${{ matrix.go }}) runs-on: ${{ matrix.os }} concurrency: - group: ci-codecov + group: ci-codecov-${{ matrix.os }}-${{ matrix.go }} cancel-in-progress: true strategy: matrix: @@ -57,7 +57,7 @@ jobs: name: golangci-lint (${{ matrix.go }}) runs-on: ubuntu-latest concurrency: - group: ci-lint + group: ci-lint-${{ matrix.go }} cancel-in-progress: true strategy: matrix: @@ -110,7 +110,7 @@ jobs: name: Test (${{ matrix.os }} / ${{ matrix.go }}) runs-on: ${{ matrix.os }} concurrency: - group: ci-test + group: ci-test-${{ matrix.os }}-${{ matrix.go }} cancel-in-progress: true strategy: matrix: @@ -149,7 +149,7 @@ jobs: name: Test with SonarQube review (${{ matrix.os }} / ${{ matrix.go }}) runs-on: ${{ matrix.os }} concurrency: - group: ci-codecov + group: ci-codecov-${{ matrix.go }} cancel-in-progress: true strategy: matrix: