Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/go_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,26 +12,26 @@
# See the License for the specific language governing permissions and
# limitations under the License.

name: go_test

Check warning on line 15 in .github/workflows/go_build.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

go_build.yaml:15: overly broad permissions: default permissions used due to no permissions: block
on: [push, pull_request]
jobs:

go_test:

Check warning on line 19 in .github/workflows/go_build.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

go_build.yaml:19: overly broad permissions: default permissions used due to no permissions: block
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:

- name: Check out code
uses: actions/checkout@v6

Check failure on line 27 in .github/workflows/go_build.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 27 in .github/workflows/go_build.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

go_build.yaml:27: unpinned action reference: action is not pinned to a hash (required by blanket policy)

- name: Set up Go
uses: actions/setup-go@v6

Check failure on line 30 in .github/workflows/go_build.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 30 in .github/workflows/go_build.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

go_build.yaml:30: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
go-version: 1.26
go-version-file: 'go.mod'
id: go

- name: Check out code
uses: actions/checkout@v6

- name: Get dependencies
run: |
go mod download
Expand All @@ -43,22 +43,22 @@
run: |
go test ./...

go_spec_test_coverage:

Check warning on line 46 in .github/workflows/go_build.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

excessive-permissions

go_build.yaml:46: overly broad permissions: default permissions used due to no permissions: block
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:

- name: Check out code
uses: actions/checkout@v6

Check failure on line 54 in .github/workflows/go_build.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 54 in .github/workflows/go_build.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

go_build.yaml:54: unpinned action reference: action is not pinned to a hash (required by blanket policy)

- name: Set up Go
uses: actions/setup-go@v6

Check failure on line 57 in .github/workflows/go_build.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

zizmor/unpinned-uses

unpinned action reference: action is not pinned to a hash (required by blanket policy)

Check failure on line 57 in .github/workflows/go_build.yaml

View workflow job for this annotation

GitHub Actions / zizmor-output

unpinned-uses

go_build.yaml:57: unpinned action reference: action is not pinned to a hash (required by blanket policy)
with:
go-version: 1.26
go-version-file: 'go.mod'
id: go

- name: Check out code
uses: actions/checkout@v6

- name: Get dependencies
run: |
go mod download
Expand Down
163 changes: 88 additions & 75 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,82 +1,95 @@
module github.com/google/cql

go 1.22
go 1.26.0

require (
github.com/antlr4-go/antlr/v4 v4.13.0
github.com/apache/beam/sdks/v2 v2.56.0
github.com/golang/glog v1.2.1
github.com/google/bulk_fhir_tools v0.1.7
github.com/google/fhir/go v0.7.4
github.com/google/fhir/go/protopath v0.7.4
github.com/google/go-cmp v0.6.0
github.com/kylelemons/godebug v1.1.0
github.com/lithammer/dedent v1.1.0
github.com/pborman/uuid v1.2.1
google.golang.org/genproto v0.0.0-20240311173647-c811ad7063a7
google.golang.org/protobuf v1.34.1
gopkg.in/gyuho/goraph.v2 v2.0.0-20160328020532-d460590d53a9
cloud.google.com/go/storage v1.62.3
github.com/antlr4-go/antlr/v4 v4.13.0
github.com/apache/beam/sdks/v2 v2.75.0
github.com/golang/glog v1.2.5
github.com/google/bulk_fhir_tools v0.1.7
github.com/google/fhir/go v0.7.4
github.com/google/fhir/go/protopath v0.7.4
github.com/google/go-cmp v0.7.0
github.com/kylelemons/godebug v1.1.0
github.com/lithammer/dedent v1.1.0
github.com/pborman/uuid v1.2.1
google.golang.org/api v0.286.0
google.golang.org/genproto v0.0.0-20260523011958-0a33c5d7ca68
google.golang.org/protobuf v1.36.11
gopkg.in/gyuho/goraph.v2 v2.0.0-20160328020532-d460590d53a9
)

require (
bitbucket.org/creachadair/stringset v0.0.14 // indirect
cloud.google.com/go v0.112.1 // indirect
cloud.google.com/go/compute v1.25.1 // indirect
cloud.google.com/go/compute/metadata v0.2.3 // indirect
cloud.google.com/go/iam v1.1.7 // indirect
cloud.google.com/go/logging v1.9.0 // indirect
cloud.google.com/go/longrunning v0.5.6 // indirect
cloud.google.com/go/profiler v0.4.0 // indirect
cloud.google.com/go/storage v1.39.1 // indirect
github.com/Microsoft/go-winio v0.6.1 // indirect
github.com/distribution/reference v0.5.0 // indirect
github.com/docker/docker v25.0.5+incompatible // indirect
github.com/docker/go-connections v0.5.0 // indirect
github.com/docker/go-units v0.5.0 // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
github.com/go-logr/logr v1.4.1 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/google/pprof v0.0.0-20230602150820-91b7bce49751 // indirect
github.com/google/s2a-go v0.1.7 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
github.com/googleapis/gax-go/v2 v2.12.3 // indirect
github.com/gyuho/goraph v0.0.0-20220410190906-ad625acf7ae3 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/nxadm/tail v1.4.11 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.1.0-rc5 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/serenize/snaker v0.0.0-20201027110005-a7ad2135616e // indirect
go.opencensus.io v0.24.0 // indirect
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect
go.opentelemetry.io/otel v1.27.0 // indirect
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.27.0 // indirect
go.opentelemetry.io/otel/metric v1.27.0 // indirect
go.opentelemetry.io/otel/sdk v1.27.0 // indirect
go.opentelemetry.io/otel/trace v1.27.0 // indirect
golang.org/x/crypto v0.23.0 // indirect
golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect
golang.org/x/mod v0.15.0 // indirect
golang.org/x/net v0.25.0 // indirect
golang.org/x/oauth2 v0.18.0 // indirect
golang.org/x/sync v0.6.0 // indirect
golang.org/x/sys v0.20.0 // indirect
golang.org/x/text v0.15.0 // indirect
golang.org/x/time v0.5.0 // indirect
golang.org/x/tools v0.18.0 // indirect
google.golang.org/api v0.171.0 // indirect
google.golang.org/appengine v1.6.8 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240520151616-dc85e6b867a5 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240515191416-fc5f0ca64291 // indirect
google.golang.org/grpc v1.64.0 // indirect
gopkg.in/retry.v1 v1.0.3 // indirect
gotest.tools/v3 v3.5.1 // indirect
)
bitbucket.org/creachadair/stringset v0.0.14 // indirect
cel.dev/expr v0.25.2 // indirect
cloud.google.com/go v0.123.0 // indirect
cloud.google.com/go/auth v0.20.0 // indirect
cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect
cloud.google.com/go/compute/metadata v0.9.0 // indirect
cloud.google.com/go/iam v1.11.0 // indirect
cloud.google.com/go/logging v1.18.0 // indirect
cloud.google.com/go/longrunning v1.0.0 // indirect
cloud.google.com/go/monitoring v1.29.0 // indirect
cloud.google.com/go/profiler v0.6.0 // indirect
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.32.0 // indirect
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.57.0 // indirect
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.57.0 // indirect
github.com/Microsoft/go-winio v0.6.2 // indirect
github.com/avast/retry-go/v4 v4.7.0 // 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
github.com/containerd/errdefs/pkg v0.3.0 // indirect
github.com/distribution/reference v0.6.0 // indirect
github.com/docker/go-connections v0.7.0 // indirect
github.com/docker/go-units v0.5.0 // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/envoyproxy/go-control-plane/envoy v1.37.0 // indirect
github.com/envoyproxy/protoc-gen-validate v1.3.3 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
github.com/go-jose/go-jose/v4 v4.1.4 // indirect
github.com/go-logr/logr v1.4.3 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/golang-cz/devslog v0.0.17 // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/google/pprof v0.0.0-20260507013755-92041b743c96 // indirect
github.com/google/s2a-go v0.1.9 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.3.16 // indirect
github.com/googleapis/gax-go/v2 v2.22.0 // indirect
github.com/gyuho/goraph v0.0.0-20220410190906-ad625acf7ae3 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/moby/docker-image-spec v1.3.1 // indirect
github.com/moby/moby/api v1.55.0 // indirect
github.com/moby/moby/client v0.5.0 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/nxadm/tail v1.4.11 // 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
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect
github.com/serenize/snaker v0.0.0-20201027110005-a7ad2135616e // indirect
github.com/spiffe/go-spiffe/v2 v2.6.0 // indirect
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
go.opentelemetry.io/contrib/detectors/gcp v1.43.0 // indirect
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/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
golang.org/x/crypto v0.54.0 // indirect
golang.org/x/exp v0.0.0-20260508232706-74f9aab9d74a // indirect
golang.org/x/net v0.56.0 // indirect
golang.org/x/oauth2 v0.36.0 // indirect
golang.org/x/sync v0.22.0 // indirect
golang.org/x/sys v0.47.0 // indirect
golang.org/x/text v0.40.0 // indirect
golang.org/x/time v0.15.0 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20260526163538-3dc84a4a5aaa // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20260610212136-7ab31c22f7ad // indirect
google.golang.org/grpc v1.82.1 // indirect
)
Loading
Loading