Skip to content

Commit 5a8512d

Browse files
authored
Merge pull request #85 from aserto-dev/opa-v1.11.1
upd example
2 parents 56ffb0a + 94d305d commit 5a8512d

File tree

7 files changed

+78
-77
lines changed

7 files changed

+78
-77
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ on:
1212
pull_request:
1313

1414
env:
15-
GO_VERSION: 1.25.4
16-
GO_LANGCI_LINT_VERSION: v2.6.1
17-
GO_TESTSUM_VERSION: 1.12.3
15+
GO_VERSION: 1.25
16+
GO_LANGCI_LINT_VERSION: v2.6.2
17+
GO_TESTSUM_VERSION: 1.13.0
1818

1919
jobs:
2020
test:

.vscode/settings.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,8 @@
2727
"Wrapf",
2828
"zerolog"
2929
],
30-
"go.testFlags": ["-race"]
30+
"go.testFlags": [
31+
"-race"
32+
],
33+
"sarif-viewer.connectToGithubCodeScanning": "off"
3134
}

example/go.mod

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
module github.com/aserto-dev/runtime/example
22

3-
go 1.25.4
3+
go 1.25
44

55
replace github.com/aserto-dev/runtime => ../
66

77
require (
8-
github.com/alecthomas/kong v1.12.1
9-
github.com/aserto-dev/runtime v0.0.0
8+
github.com/alecthomas/kong v1.13.0
9+
github.com/aserto-dev/runtime v1.11.1
1010
github.com/go-viper/mapstructure/v2 v2.4.0
11-
github.com/open-policy-agent/opa v1.10.1
11+
github.com/open-policy-agent/opa v1.11.1
1212
github.com/pkg/errors v0.9.1
1313
github.com/rs/zerolog v1.34.0
1414
github.com/spf13/viper v1.21.0
@@ -19,12 +19,12 @@ require (
1919
github.com/agnivade/levenshtein v1.2.1 // indirect
2020
github.com/aserto-dev/logger v0.0.9 // indirect
2121
github.com/beorn7/perks v1.0.1 // indirect
22-
github.com/bytecodealliance/wasmtime-go/v37 v37.0.0 // indirect
22+
github.com/bytecodealliance/wasmtime-go/v39 v39.0.1 // indirect
2323
github.com/cespare/xxhash/v2 v2.3.0 // indirect
24-
github.com/containerd/containerd/v2 v2.1.5 // indirect
24+
github.com/containerd/containerd/v2 v2.2.0 // indirect
2525
github.com/containerd/errdefs v1.0.0 // indirect
2626
github.com/containerd/log v0.1.0 // indirect
27-
github.com/containerd/platforms v1.0.0-rc.1 // indirect
27+
github.com/containerd/platforms v1.0.0-rc.2 // indirect
2828
github.com/containerd/typeurl/v2 v2.2.3 // indirect
2929
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.4.0 // indirect
3030
github.com/felixge/httpsnoop v1.0.4 // indirect
@@ -40,15 +40,15 @@ require (
4040
github.com/hashicorp/go-multierror v1.1.1 // indirect
4141
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
4242
github.com/huandu/go-clone v1.7.3 // indirect
43-
github.com/huandu/go-sqlbuilder v1.37.0 // indirect
43+
github.com/huandu/go-sqlbuilder v1.38.1 // indirect
4444
github.com/huandu/xstrings v1.4.0 // indirect
45-
github.com/klauspost/compress v1.18.0 // indirect
45+
github.com/klauspost/compress v1.18.1 // indirect
4646
github.com/lestrrat-go/blackmagic v1.0.4 // indirect
4747
github.com/lestrrat-go/dsig v1.0.0 // indirect
4848
github.com/lestrrat-go/dsig-secp256k1 v1.0.0 // indirect
4949
github.com/lestrrat-go/httpcc v1.0.1 // indirect
5050
github.com/lestrrat-go/httprc/v3 v3.0.1 // indirect
51-
github.com/lestrrat-go/jwx/v3 v3.0.11 // indirect
51+
github.com/lestrrat-go/jwx/v3 v3.0.12 // indirect
5252
github.com/lestrrat-go/option v1.0.1 // indirect
5353
github.com/lestrrat-go/option/v2 v2.0.0 // indirect
5454
github.com/mattn/go-colorable v0.1.13 // indirect
@@ -68,7 +68,7 @@ require (
6868
github.com/prometheus/procfs v0.17.0 // indirect
6969
github.com/rcrowley/go-metrics v0.0.0-20250401214520-65e299d6c5c9 // indirect
7070
github.com/sagikazarmark/locafero v0.11.0 // indirect
71-
github.com/segmentio/asm v1.2.0 // indirect
71+
github.com/segmentio/asm v1.2.1 // indirect
7272
github.com/sirupsen/logrus v1.9.4-0.20230606125235-dd1b4c2e81af // indirect
7373
github.com/sourcegraph/conc v0.3.1-0.20240121214520-5f936abd7ae8 // indirect
7474
github.com/spf13/afero v1.15.0 // indirect
@@ -77,26 +77,26 @@ require (
7777
github.com/subosito/gotenv v1.6.0 // indirect
7878
github.com/tchap/go-patricia/v2 v2.3.3 // indirect
7979
github.com/valyala/fastjson v1.6.4 // indirect
80-
github.com/vektah/gqlparser/v2 v2.5.30 // indirect
80+
github.com/vektah/gqlparser/v2 v2.5.31 // indirect
8181
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
8282
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
8383
github.com/yashtewari/glob-intersection v0.2.0 // indirect
84-
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
84+
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
8585
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.63.0 // indirect
8686
go.opentelemetry.io/otel v1.38.0 // indirect
8787
go.opentelemetry.io/otel/metric v1.38.0 // indirect
8888
go.opentelemetry.io/otel/sdk v1.38.0 // indirect
8989
go.opentelemetry.io/otel/trace v1.38.0 // indirect
9090
go.yaml.in/yaml/v2 v2.4.3 // indirect
9191
go.yaml.in/yaml/v3 v3.0.4 // indirect
92-
golang.org/x/crypto v0.43.0 // indirect
93-
golang.org/x/net v0.46.0 // indirect
94-
golang.org/x/sync v0.18.0 // indirect
95-
golang.org/x/sys v0.38.0 // indirect
96-
golang.org/x/text v0.30.0 // indirect
92+
golang.org/x/crypto v0.46.0 // indirect
93+
golang.org/x/net v0.48.0 // indirect
94+
golang.org/x/sync v0.19.0 // indirect
95+
golang.org/x/sys v0.39.0 // indirect
96+
golang.org/x/text v0.32.0 // indirect
9797
golang.org/x/time v0.14.0 // indirect
98-
google.golang.org/grpc v1.76.0 // indirect
99-
google.golang.org/protobuf v1.36.10 // indirect
98+
google.golang.org/grpc v1.77.0 // indirect
99+
google.golang.org/protobuf v1.36.11 // indirect
100100
gopkg.in/yaml.v3 v3.0.1 // indirect
101101
oras.land/oras-go/v2 v2.6.0 // indirect
102102
sigs.k8s.io/yaml v1.6.0 // indirect

0 commit comments

Comments
 (0)