From 7f57140efed8304cecbf7baa793f46b74831702f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 23 Oct 2024 22:35:47 +0000 Subject: [PATCH 1/2] Bump benchmark-action/github-action-benchmark from 1.20.3 to 1.20.4 Bumps [benchmark-action/github-action-benchmark](https://github.com/benchmark-action/github-action-benchmark) from 1.20.3 to 1.20.4. - [Release notes](https://github.com/benchmark-action/github-action-benchmark/releases) - [Changelog](https://github.com/benchmark-action/github-action-benchmark/blob/master/CHANGELOG.md) - [Commits](https://github.com/benchmark-action/github-action-benchmark/compare/v1.20.3...v1.20.4) --- updated-dependencies: - dependency-name: benchmark-action/github-action-benchmark dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/benchmark.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index e8c22dd..3e53e3f 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -56,7 +56,7 @@ jobs: # This will only run if we have Benchmark Results from main branch - name: Compare PR Benchmark Results with main branch - uses: benchmark-action/github-action-benchmark@v1.20.3 + uses: benchmark-action/github-action-benchmark@v1.20.4 if: steps.cache.outputs.cache-hit == 'true' with: tool: 'go' @@ -72,7 +72,7 @@ jobs: alert-threshold: "150%" - name: Store Benchmark Results for main branch - uses: benchmark-action/github-action-benchmark@v1.20.3 + uses: benchmark-action/github-action-benchmark@v1.20.4 if: ${{ github.ref_name == 'main' }} with: tool: 'go' @@ -86,7 +86,7 @@ jobs: alert-threshold: "150%" - name: Publish Benchmark Results to GitHub Pages - uses: benchmark-action/github-action-benchmark@v1.20.3 + uses: benchmark-action/github-action-benchmark@v1.20.4 if: ${{ github.ref_name == 'main' }} with: tool: 'go' From 8ed48ec716e5ff0e5c9d8d7aec7665417f2217fb Mon Sep 17 00:00:00 2001 From: Juan Calderon-Perez <835733+gaby@users.noreply.github.com> Date: Sun, 27 Oct 2024 10:04:44 -0400 Subject: [PATCH 2/2] Update decoder_test.go Signed-off-by: Juan Calderon-Perez <835733+gaby@users.noreply.github.com> --- decoder_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/decoder_test.go b/decoder_test.go index 33edfc6..7106dcf 100644 --- a/decoder_test.go +++ b/decoder_test.go @@ -2567,7 +2567,7 @@ func BenchmarkSimpleStructDecode(b *testing.B) { b.ResetTimer() for i := 0; i < b.N; i++ { - decoder.Decode(&s, data) + _ = decoder.Decode(&s, data) } }