diff options
author | sudoforge <no-reply@sudoforge.com> | 2024-07-19 07:21:01 -0700 |
---|---|---|
committer | sudoforge <9c001b67637a@sudoforge.com> | 2024-07-20 07:44:23 -0700 |
commit | eda0d6723978fa19711b538bf1e9641537959bb3 (patch) | |
tree | a55972531e7cc90d2134ebf86c06c09a7404b15a /.github/workflows/benchmark.yml | |
parent | a4b8858668d44203f31e1d9cd675b02600d0ea3f (diff) | |
download | git-bug-eda0d6723978fa19711b538bf1e9641537959bb3.tar.gz |
feat: update action library versions
Change-Id: I957c6de57b3a9151e6d9ce8caba87f4e2c714846
Diffstat (limited to '.github/workflows/benchmark.yml')
-rw-r--r-- | .github/workflows/benchmark.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 8e768a7a..2b62d07a 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -20,13 +20,16 @@ jobs: name: Performance regression check runs-on: ubuntu-latest steps: - - uses: actions/setup-go@v3 + - uses: actions/setup-go@v5 with: go-version: 1.22.5 - - uses: actions/checkout@v3 + + - uses: actions/checkout@v4 + # Run benchmark with `go test -bench` and stores the output to a file - name: Run benchmark run: go test -v ./... -bench=. -run=xxx -benchmem | tee output.txt + # Run `github-action-benchmark` action - name: Store benchmark result uses: benchmark-action/github-action-benchmark@v1 |