Skip to content

chore(deps): bump google.golang.org/grpc from 1.64.0 to 1.65.0 (#6285) #5451

chore(deps): bump google.golang.org/grpc from 1.64.0 to 1.65.0 (#6285)

chore(deps): bump google.golang.org/grpc from 1.64.0 to 1.65.0 (#6285) #5451

Workflow file for this run

name: Go Benchmarks
on:
push:
branches:
- '**'
permissions:
contents: write
deployments: write
jobs:
benchmark:
timeout-minutes: ${{ fromJSON(vars.GHA_DEFAULT_TIMEOUT) }}
name: Run Go benchmarks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- uses: jdx/mise-action@v2
with:
install: false
- name: Run benchmark
run: make bench | tee bench.out
- name: Store benchmark result
uses: benchmark-action/github-action-benchmark@v1
with:
name: Go Benchmark
tool: 'go'
output-file-path: bench.out
github-token: ${{ secrets.GITHUB_TOKEN }}
auto-push: true
# Show alert with commit comment on detecting possible performance regression
alert-threshold: '200%'
alert-comment-cc-users: '@Kong/k8s-maintainers'
comment-always: false
comment-on-alert: true
# Enable Job Summary for PRs
summary-always: true
fail-on-alert: true