From f1d260e3e27c6de9f064a5570e58bc7c8d4e1696 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 11:31:48 +0000 Subject: [PATCH 1/4] build(deps): bump golang.org/x/net in /_integration-tests Bumps [golang.org/x/net](https://github.com/golang/net) from 0.50.0 to 0.51.0. - [Commits](https://github.com/golang/net/compare/v0.50.0...v0.51.0) --- updated-dependencies: - dependency-name: golang.org/x/net dependency-version: 0.51.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- _integration-tests/go.mod | 4 ++-- _integration-tests/go.sum | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/_integration-tests/go.mod b/_integration-tests/go.mod index ef0bc15..481ec14 100644 --- a/_integration-tests/go.mod +++ b/_integration-tests/go.mod @@ -1,10 +1,10 @@ module golang.stackrox.io/grpc-http1/_integration-tests -go 1.24.0 +go 1.25.0 require ( github.com/stretchr/testify v1.11.1 - golang.org/x/net v0.50.0 + golang.org/x/net v0.51.0 golang.stackrox.io/grpc-http1 v0.0.0-00010101000000-000000000000 google.golang.org/grpc v1.79.1 google.golang.org/grpc/examples v0.0.0-20250128160859-73e447014dfa diff --git a/_integration-tests/go.sum b/_integration-tests/go.sum index 09dc3bf..7fcdc7f 100644 --- a/_integration-tests/go.sum +++ b/_integration-tests/go.sum @@ -34,8 +34,8 @@ go.opentelemetry.io/otel/sdk/metric v1.39.0 h1:cXMVVFVgsIf2YL6QkRF4Urbr/aMInf+2W go.opentelemetry.io/otel/sdk/metric v1.39.0/go.mod h1:xq9HEVH7qeX69/JnwEfp6fVq5wosJsY1mt4lLfYdVew= go.opentelemetry.io/otel/trace v1.39.0 h1:2d2vfpEDmCJ5zVYz7ijaJdOF59xLomrvj7bjt6/qCJI= go.opentelemetry.io/otel/trace v1.39.0/go.mod h1:88w4/PnZSazkGzz/w84VHpQafiU4EtqqlVdxWy+rNOA= -golang.org/x/net v0.50.0 h1:ucWh9eiCGyDR3vtzso0WMQinm2Dnt8cFMuQa9K33J60= -golang.org/x/net v0.50.0/go.mod h1:UgoSli3F/pBgdJBHCTc+tp3gmrU4XswgGRgtnwWTfyM= +golang.org/x/net v0.51.0 h1:94R/GTO7mt3/4wIKpcR5gkGmRLOuE/2hNGeWq/GBIFo= +golang.org/x/net v0.51.0/go.mod h1:aamm+2QF5ogm02fjy5Bb7CQ0WMt1/WVM7FtyaTLlA9Y= golang.org/x/sys v0.41.0 h1:Ivj+2Cp/ylzLiEU89QhWblYnOE9zerudt9Ftecq2C6k= golang.org/x/sys v0.41.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks= golang.org/x/text v0.34.0 h1:oL/Qq0Kdaqxa1KbNeMKwQq0reLCCaFtqu2eNuSeNHbk= From 35e1df532a7e451eaed4723ce91ad786bf2c232b Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Mon, 2 Mar 2026 12:43:41 +0100 Subject: [PATCH 2/4] Update Go version from 1.24.0 to 1.25.0 --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index b939557..e8dde07 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module golang.stackrox.io/grpc-http1 -go 1.24.0 +go 1.25.0 require ( github.com/coder/websocket v1.8.14 From 024ec2236282387b47ec6490e51a7fe02056fef3 Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Mon, 2 Mar 2026 12:46:25 +0100 Subject: [PATCH 3/4] Update Go version setup in CI workflow --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7b7a0aa..d9cfff1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: steps: - uses: actions/setup-go@v6 with: - go-version: ~1.24 + go-version-file: 'go.mod' - uses: actions/checkout@v6 with: fetch-depth: 1 From 9b136c6e5b0f572ecdfa45294d69cc6a0a991171 Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Mon, 2 Mar 2026 13:04:47 +0100 Subject: [PATCH 4/4] Reorder setup-go action in CI workflow --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d9cfff1..f676176 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,12 +12,12 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/setup-go@v6 - with: - go-version-file: 'go.mod' - uses: actions/checkout@v6 with: fetch-depth: 1 + - uses: actions/setup-go@v6 + with: + go-version-file: 'go.mod' - name: Style checks run: |