Skip to content

Commit 559865e

Browse files
ci: pin action to v3 and remove moon's --concurency usage
v3 was the action version of the previous base job. We want to do changes one by one, and v4 (current main) does not work without the concurrency change. This just brings the concurrency change that we will need to set the action version to the latest (v4) again.
1 parent a3d2755 commit 559865e

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,15 @@ jobs:
6262

6363
- name: Run benchmarks with tinybench-plugin
6464
# use version from `main` branch to always test the latest version, in real projects, use a tag, like `@v2`
65-
uses: CodSpeedHQ/action@main
65+
uses: CodSpeedHQ/action@v3
6666
with:
6767
run: pnpm --filter ${{ matrix.example }} bench-tinybench
6868
env:
6969
CODSPEED_SKIP_UPLOAD: true
7070
CODSPEED_DEBUG: true
7171
- name: Run benchmarks with benchmark.js-plugin
7272
# use version from `main` branch to always test the latest version, in real projects, use a tag, like `@v2`
73-
uses: CodSpeedHQ/action@main
73+
uses: CodSpeedHQ/action@v3
7474
with:
7575
run: pnpm --filter ${{ matrix.example }} bench-benchmark-js
7676
env:

.github/workflows/codspeed.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
- name: Run benchmarks
2727
# use version from `main` branch to always test the latest version, in real projects, use a tag, like `@v2`
28-
uses: CodSpeedHQ/action@main
28+
uses: CodSpeedHQ/action@v3
2929
with:
3030
run: |
3131
pnpm moon run --concurrency 1 :bench
@@ -51,7 +51,7 @@ jobs:
5151

5252
- name: Run benchmarks
5353
# use version from `main` branch to always test the latest version, in real projects, use a tag, like `@v2`
54-
uses: CodSpeedHQ/action@main
54+
uses: CodSpeedHQ/action@v3
5555
with:
5656
# Only tinybench supports walltime for now
5757
run: |

0 commit comments

Comments
 (0)