diff options
author | 2022-10-26 16:21:51 -0700 | |
---|---|---|
committer | 2022-10-26 16:21:51 -0700 | |
commit | a1456767f7bdcae710845dd64a8591200eebefb7 (patch) | |
tree | 1988c279c4c152427b69d9d081971c83a5c0a77f | |
parent | e0feff22c90983d8dce1f88486724f851b327dd5 (diff) | |
download | bun-a1456767f7bdcae710845dd64a8591200eebefb7.tar.gz bun-a1456767f7bdcae710845dd64a8591200eebefb7.tar.zst bun-a1456767f7bdcae710845dd64a8591200eebefb7.zip |
Limit concurrency for GitHub Actions due to issues with cache poisoning
If multiple actions are running, sometimes the cache is poisoned from another action. We need to fix this, but this is an interim measure to make actions less flaky
-rw-r--r-- | .github/workflows/bun-linux-build.yml | 1 | ||||
-rw-r--r-- | .github/workflows/bun-mac-aarch64.yml | 1 | ||||
-rw-r--r-- | .github/workflows/bun-mac-x64-baseline.yml | 1 | ||||
-rw-r--r-- | .github/workflows/bun-mac-x64.yml | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/bun-linux-build.yml b/.github/workflows/bun-linux-build.yml index 392b80561..0d306a348 100644 --- a/.github/workflows/bun-linux-build.yml +++ b/.github/workflows/bun-linux-build.yml @@ -3,6 +3,7 @@ env: REGISTRY: ghcr.io IMAGE_NAME: ${{ github.repository }} TEST_TAG: bun-test' +concurrency: ${{ runner.name }}-${{ runner.os }}-${{ runner.arch }} on: push: diff --git a/.github/workflows/bun-mac-aarch64.yml b/.github/workflows/bun-mac-aarch64.yml index b7b347132..199ae0108 100644 --- a/.github/workflows/bun-mac-aarch64.yml +++ b/.github/workflows/bun-mac-aarch64.yml @@ -3,6 +3,7 @@ env: REGISTRY: ghcr.io IMAGE_NAME: ${{ github.repository }} TEST_TAG: bun-test' +concurrency: ${{ runner.name }}-${{ runner.os }}-${{ runner.arch }} on: push: diff --git a/.github/workflows/bun-mac-x64-baseline.yml b/.github/workflows/bun-mac-x64-baseline.yml index ec7f82438..4bc66e092 100644 --- a/.github/workflows/bun-mac-x64-baseline.yml +++ b/.github/workflows/bun-mac-x64-baseline.yml @@ -3,6 +3,7 @@ env: REGISTRY: ghcr.io IMAGE_NAME: ${{ github.repository }} TEST_TAG: bun-test' +concurrency: ${{ runner.name }}-${{ runner.os }}-${{ runner.arch }} on: push: diff --git a/.github/workflows/bun-mac-x64.yml b/.github/workflows/bun-mac-x64.yml index bf0ac8764..93c5ab654 100644 --- a/.github/workflows/bun-mac-x64.yml +++ b/.github/workflows/bun-mac-x64.yml @@ -3,6 +3,7 @@ env: REGISTRY: ghcr.io IMAGE_NAME: ${{ github.repository }} TEST_TAG: bun-test' +concurrency: ${{ runner.name }}-${{ runner.os }}-${{ runner.arch }} on: push: |