Skip to content

Commit

Permalink
ci(plugins-benchmark-pr): drop old node versions (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fdawgs authored Nov 1, 2024
1 parent a6d8b1b commit 8560445
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/plugins-benchmark-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ jobs:
permissions:
contents: read
outputs:
PR-BENCH-18: ${{ steps.benchmark-pr.outputs.BENCH_RESULT_18 }}
PR-BENCH-20: ${{ steps.benchmark-pr.outputs.BENCH_RESULT_20 }}
PR-BENCH-21: ${{ steps.benchmark-pr.outputs.BENCH_RESULT_21 }}
BASE-BENCH-18: ${{ steps.benchmark-base.outputs.BENCH_RESULT_18 }}
PR-BENCH-22: ${{ steps.benchmark-pr.outputs.BENCH_RESULT_22 }}
PR-BENCH-23: ${{ steps.benchmark-pr.outputs.BENCH_RESULT_23 }}
BASE-BENCH-20: ${{ steps.benchmark-base.outputs.BENCH_RESULT_20 }}
BASE-BENCH-21: ${{ steps.benchmark-base.outputs.BENCH_RESULT_21 }}
BASE-BENCH-22: ${{ steps.benchmark-base.outputs.BENCH_RESULT_22 }}
BASE-BENCH-23: ${{ steps.benchmark-base.outputs.BENCH_RESULT_23 }}

strategy:
matrix:
Expand Down Expand Up @@ -106,36 +106,36 @@ jobs:
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
message: |
**Node**: 18
**Node**: 20
${{ inputs.pr-repo }}@${{ inputs.pr-sha }} (${{ inputs.pr-ref }}):
```
${{ needs.benchmark.outputs.PR-BENCH-18 }}
${{ needs.benchmark.outputs.PR-BENCH-20 }}
```
${{ inputs.base-repo }}@${{ inputs.base-sha }} (${{ inputs.base-ref }}):
```
${{ needs.benchmark.outputs.BASE-BENCH-18 }}
${{ needs.benchmark.outputs.BASE-BENCH-20 }}
```
---
**Node**: 20
**Node**: 22
${{ inputs.pr-repo }}@${{ inputs.pr-sha }} (${{ inputs.pr-ref }}):
```
${{ needs.benchmark.outputs.PR-BENCH-20 }}
${{ needs.benchmark.outputs.PR-BENCH-22 }}
```
${{ inputs.base-repo }}@${{ inputs.base-sha }} (${{ inputs.base-ref }}):
```
${{ needs.benchmark.outputs.BASE-BENCH-20 }}
${{ needs.benchmark.outputs.BASE-BENCH-22 }}
```
---
**Node**: 21
**Node**: 23
${{ inputs.pr-repo }}@${{ inputs.pr-sha }} (${{ inputs.pr-ref }}):
```
${{ needs.benchmark.outputs.PR-BENCH-21 }}
${{ needs.benchmark.outputs.PR-BENCH-23 }}
```
${{ inputs.base-repo }}@${{ inputs.base-sha }} (${{ inputs.base-ref }}):
```
${{ needs.benchmark.outputs.BASE-BENCH-21 }}
${{ needs.benchmark.outputs.BASE-BENCH-23 }}
```

0 comments on commit 8560445

Please sign in to comment.