diff --git a/.github/workflows/ci-integ-test-full.yml b/.github/workflows/ci-integ-test-full.yml index e5901c6e..c08a6adb 100644 --- a/.github/workflows/ci-integ-test-full.yml +++ b/.github/workflows/ci-integ-test-full.yml @@ -10,10 +10,6 @@ on: - 'dist/**' - 'src/vendor/gradle-actions-caching/**' -concurrency: - group: integ-test - cancel-in-progress: false - permissions: contents: read @@ -21,7 +17,7 @@ jobs: caching-integ-tests: uses: ./.github/workflows/suite-integ-test-caching.yml concurrency: - group: CI-integ-test-full + group: CI-integ-test cancel-in-progress: false with: runner-os: '["ubuntu-latest", "windows-latest", "macos-latest"]' @@ -33,7 +29,7 @@ jobs: contents: write uses: ./.github/workflows/suite-integ-test-other.yml concurrency: - group: CI-integ-test-full + group: CI-integ-test cancel-in-progress: false with: runner-os: '["ubuntu-latest", "windows-latest", "macos-latest"]' diff --git a/.github/workflows/ci-integ-test.yml b/.github/workflows/ci-integ-test.yml index aef5d7c2..030ab89c 100644 --- a/.github/workflows/ci-integ-test.yml +++ b/.github/workflows/ci-integ-test.yml @@ -11,10 +11,6 @@ on: paths-ignore: - 'dist/**' -concurrency: - group: integ-test - cancel-in-progress: false - permissions: contents: read @@ -31,6 +27,9 @@ jobs: caching-integ-tests: needs: build-distribution uses: ./.github/workflows/suite-integ-test-caching.yml + concurrency: + group: CI-integ-test + cancel-in-progress: false with: skip-dist: false secrets: inherit @@ -40,6 +39,9 @@ jobs: contents: write needs: build-distribution uses: ./.github/workflows/suite-integ-test-other.yml + concurrency: + group: CI-integ-test + cancel-in-progress: false with: skip-dist: false secrets: inherit