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 client/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/docker/secrets-engine/client

go 1.25
go 1.25.8

// This `replace` is only for CI to function.
// The correct version will get resolved from below when this module is
Expand Down
2 changes: 1 addition & 1 deletion go.work
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
go 1.25.7
go 1.25.8

use (
./client
Expand Down
2 changes: 1 addition & 1 deletion plugin/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/docker/secrets-engine/plugin

go 1.25
go 1.25.8

// This `replace` is only for CI to function.
// The correct version will get resolved from below when this module is
Expand Down
2 changes: 1 addition & 1 deletion plugins/credentialhelper/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/docker/secrets-engine/plugins/credentialhelper

go 1.25.0
go 1.25.8

// This `replace` is only for CI to function.
// The correct version will get resolved from below when this module is
Expand Down
2 changes: 1 addition & 1 deletion plugins/pass/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/docker/secrets-engine/plugins/pass

go 1.25.0
go 1.25.8

replace github.com/docker/secrets-engine/store => ./../../store

Expand Down
2 changes: 1 addition & 1 deletion store/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/docker/secrets-engine/store

go 1.25
go 1.25.8

// This `replace` is only for CI to function.
// The correct version will get resolved from below when this module is
Expand Down
6 changes: 3 additions & 3 deletions vendor/modules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ github.com/davecgh/go-spew/spew
github.com/docker/docker-credential-helpers/client
github.com/docker/docker-credential-helpers/credentials
# github.com/docker/secrets-engine/plugin v0.0.22 => ./plugin
## explicit; go 1.25
## explicit; go 1.25.8
# github.com/docker/secrets-engine/store v0.0.22 => ./store
## explicit; go 1.25
## explicit; go 1.25.8
# github.com/docker/secrets-engine/x v0.0.25-do.not.use => ./x
## explicit; go 1.25
## explicit; go 1.25.8
# github.com/go-logr/logr v1.4.3
## explicit; go 1.18
github.com/go-logr/logr
Expand Down
2 changes: 1 addition & 1 deletion x/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/docker/secrets-engine/x

go 1.25
go 1.25.8

require (
connectrpc.com/connect v1.19.1
Expand Down
Loading