aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/benchmark.yml
diff options
context:
space:
mode:
authorsudoforge <no-reply@sudoforge.com>2024-07-19 07:21:01 -0700
committersudoforge <9c001b67637a@sudoforge.com>2024-07-20 07:44:23 -0700
commiteda0d6723978fa19711b538bf1e9641537959bb3 (patch)
treea55972531e7cc90d2134ebf86c06c09a7404b15a /.github/workflows/benchmark.yml
parenta4b8858668d44203f31e1d9cd675b02600d0ea3f (diff)
downloadgit-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.yml7
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