From 33e3e4b65e022aeabbcadf8647f5de31d6435e60 Mon Sep 17 00:00:00 2001 From: Steve Moyer Date: Tue, 3 Jan 2023 10:20:08 -0500 Subject: fix: resolve Go vulnerabilities Resolves #975 --- .github/workflows/benchmark.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github/workflows/benchmark.yml') diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index e5fcd1f1..c7876f2d 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -18,7 +18,7 @@ jobs: steps: - uses: actions/setup-go@v3 with: - go-version: 1.18.x + go-version: 1.19.x - uses: actions/checkout@v3 # Run benchmark with `go test -bench` and stores the output to a file - name: Run benchmark -- cgit From 58a6962f4e78afa1208f40578caf7ac2b7a04184 Mon Sep 17 00:00:00 2001 From: Steve Moyer Date: Tue, 3 Jan 2023 19:48:38 -0500 Subject: ci: use Go 1.19.4 and setup-go@v3 --- .github/workflows/benchmark.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github/workflows/benchmark.yml') diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index c7876f2d..16fb5d7e 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -18,7 +18,7 @@ jobs: steps: - uses: actions/setup-go@v3 with: - go-version: 1.19.x + go-version: 1.19.4 - uses: actions/checkout@v3 # Run benchmark with `go test -bench` and stores the output to a file - name: Run benchmark -- cgit