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
2 changes: 1 addition & 1 deletion .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
continue-on-error: true
uses: golang/govulncheck-action@b625fbe08f3bccbe446d94fbf87fcc875a4f50ee # v1.0.4
with:
go-version-input: "1.25.7"
go-version-input: "1.25.9"
work-dir: ${{ matrix.directory }}
- if: steps.govulncheck.outcome == 'failure'
run: echo "$MODULE_DIR" > "/tmp/govulncheck-failure-${JOB_INDEX}.txt"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: "Setup Go"
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
with:
go-version: "1.25.7"
go-version: "1.25.9"
check-latest: false
cache-dependency-path: |
service/go.sum
Expand Down
2 changes: 1 addition & 1 deletion examples/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/opentdf/platform/examples

go 1.25.0

toolchain go1.25.8
toolchain go1.25.9

require (
connectrpc.com/connect v1.19.1
Expand Down
2 changes: 1 addition & 1 deletion go.work
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
go 1.25.5

toolchain go1.25.8
toolchain go1.25.9
Comment thread
sievdokymov-virtru marked this conversation as resolved.

use (
./examples
Expand Down
2 changes: 1 addition & 1 deletion lib/fixtures/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/opentdf/platform/lib/fixtures

go 1.25.0

toolchain go1.25.8
toolchain go1.25.9

require github.com/Nerzal/gocloak/v13 v13.9.0

Expand Down
2 changes: 1 addition & 1 deletion lib/flattening/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/opentdf/platform/lib/flattening

go 1.25.0

toolchain go1.25.8
toolchain go1.25.9

require github.com/stretchr/testify v1.11.1

Expand Down
2 changes: 1 addition & 1 deletion lib/identifier/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/opentdf/platform/lib/identifier

go 1.25.0

toolchain go1.25.8
toolchain go1.25.9

require github.com/stretchr/testify v1.11.1

Expand Down
2 changes: 1 addition & 1 deletion lib/ocrypto/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/opentdf/platform/lib/ocrypto

go 1.25.0

toolchain go1.25.8
toolchain go1.25.9

require (
github.com/stretchr/testify v1.11.1
Expand Down
2 changes: 1 addition & 1 deletion otdfctl/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/opentdf/platform/otdfctl

go 1.25.0

toolchain go1.25.8
toolchain go1.25.9

require (
github.com/adrg/frontmatter v0.2.0
Expand Down
2 changes: 1 addition & 1 deletion protocol/go/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/opentdf/platform/protocol/go

go 1.25.0

toolchain go1.25.8
toolchain go1.25.9

require (
buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go v1.34.1-20240508200655-46a4cf4ba109.1
Expand Down
2 changes: 1 addition & 1 deletion sdk/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/opentdf/platform/sdk

go 1.25.0

toolchain go1.25.8
toolchain go1.25.9

require (
connectrpc.com/connect v1.19.1
Expand Down
2 changes: 1 addition & 1 deletion service/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/opentdf/platform/service

go 1.25.0

toolchain go1.25.8
toolchain go1.25.9

require (
buf.build/go/protovalidate v1.0.0
Expand Down
2 changes: 1 addition & 1 deletion test/integration/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/opentdf/platform/test/integration

go 1.25.0

toolchain go1.25.8
toolchain go1.25.9

replace (
github.com/opentdf/platform/lib/fixtures => ../../lib/fixtures
Expand Down
2 changes: 1 addition & 1 deletion tests-bdd/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/opentdf/platform/tests-bdd

go 1.25.5

toolchain go1.25.8
toolchain go1.25.9

require (
github.com/cucumber/godog v0.15.0
Expand Down
Loading