diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7b7a0aa..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: ~1.24 - uses: actions/checkout@v6 with: fetch-depth: 1 + - uses: actions/setup-go@v6 + with: + go-version-file: 'go.mod' - name: Style checks run: | 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= diff --git a/go.mod b/go.mod index 4c10ba1..4e188d7 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