diff --git a/.github/workflows/integration-tests-on-emulator.yml b/.github/workflows/integration-tests-on-emulator.yml index 84512a6..12003cf 100644 --- a/.github/workflows/integration-tests-on-emulator.yml +++ b/.github/workflows/integration-tests-on-emulator.yml @@ -19,7 +19,7 @@ jobs: with: go-version: 1.26.x - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Run integration tests on Emulator run: go test -v env: diff --git a/.github/workflows/integration-tests-on-production.yml b/.github/workflows/integration-tests-on-production.yml index e5bd6da..7cac24a 100644 --- a/.github/workflows/integration-tests-on-production.yml +++ b/.github/workflows/integration-tests-on-production.yml @@ -27,7 +27,7 @@ jobs: with: go-version: 1.26.x - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Auth uses: google-github-actions/auth@v3 with: diff --git a/.github/workflows/postgresql.yml b/.github/workflows/postgresql.yml index f4f0277..c8648a0 100644 --- a/.github/workflows/postgresql.yml +++ b/.github/workflows/postgresql.yml @@ -19,9 +19,9 @@ jobs: with: go-version: 1.26.x - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Checkout gorm - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: repository: go-gorm/gorm path: postgresql/tests/gorm diff --git a/.github/workflows/samples-postgresql.yml b/.github/workflows/samples-postgresql.yml index c8d8c14..57154ef 100644 --- a/.github/workflows/samples-postgresql.yml +++ b/.github/workflows/samples-postgresql.yml @@ -14,7 +14,7 @@ jobs: with: go-version: ${{ matrix.go-version }} - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Pre-pull Spanner Emulator image run: | for i in {1..5}; do diff --git a/.github/workflows/samples.yml b/.github/workflows/samples.yml index c39e098..31708c5 100644 --- a/.github/workflows/samples.yml +++ b/.github/workflows/samples.yml @@ -14,7 +14,7 @@ jobs: with: go-version: ${{ matrix.go-version }} - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Pre-pull Spanner Emulator image run: | for i in {1..5}; do diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index ac0c918..1e53f1a 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -17,6 +17,6 @@ jobs: with: go-version: ${{ matrix.go-version }} - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Run unit tests run: go test -short diff --git a/postgresql/samples/go.mod b/postgresql/samples/go.mod index 83840e8..c9e3d7f 100644 --- a/postgresql/samples/go.mod +++ b/postgresql/samples/go.mod @@ -27,10 +27,10 @@ require ( cloud.google.com/go/iam v1.11.0 // indirect cloud.google.com/go/longrunning v1.0.0 // indirect cloud.google.com/go/monitoring v1.29.0 // indirect - github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c // indirect github.com/GoogleCloudPlatform/grpc-gcp-go/grpcgcp v1.6.0 // indirect github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.32.0 // indirect github.com/Microsoft/go-winio v0.6.2 // indirect + github.com/cenkalti/backoff/v5 v5.0.3 // indirect github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/cncf/xds/go v0.0.0-20260202195803-dba9d589def2 // indirect github.com/containerd/errdefs v1.0.0 // indirect @@ -49,6 +49,7 @@ require ( github.com/google/s2a-go v0.1.9 // indirect github.com/googleapis/enterprise-certificate-proxy v0.3.16 // indirect github.com/googleapis/gax-go/v2 v2.22.0 // indirect + github.com/grpc-ecosystem/grpc-gateway/v2 v2.28.0 // indirect github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect github.com/jackc/pgpassfile v1.0.0 // indirect github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect @@ -57,7 +58,6 @@ require ( github.com/jinzhu/inflection v1.0.0 // indirect github.com/jinzhu/now v1.1.5 // indirect github.com/moby/docker-image-spec v1.3.1 // indirect - github.com/moby/sys/sequential v0.7.0 // indirect github.com/opencontainers/go-digest v1.0.0 // indirect github.com/opencontainers/image-spec v1.1.1 // indirect github.com/pkg/errors v0.9.1 // indirect @@ -70,12 +70,10 @@ require ( go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.68.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.68.0 // indirect go.opentelemetry.io/otel v1.44.0 // indirect - go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.44.0 // indirect go.opentelemetry.io/otel/metric v1.44.0 // indirect go.opentelemetry.io/otel/sdk v1.44.0 // indirect go.opentelemetry.io/otel/sdk/metric v1.44.0 // indirect go.opentelemetry.io/otel/trace v1.44.0 // indirect - go.opentelemetry.io/proto/otlp v1.10.0 // indirect golang.org/x/crypto v0.53.0 // indirect golang.org/x/net v0.56.0 // indirect golang.org/x/oauth2 v0.36.0 // indirect diff --git a/postgresql/samples/go.sum b/postgresql/samples/go.sum index f054d60..230ffe3 100644 --- a/postgresql/samples/go.sum +++ b/postgresql/samples/go.sum @@ -233,7 +233,6 @@ golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5h golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210616094352-59db8d763f22/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.46.0 h1:noSf2Fq6F8DBgS+LysIkx7rIExoNHJsxOAtPp4rthXw= golang.org/x/sys v0.46.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=