Skip to content

Commit ae84d35

Browse files
committed
feat: add support for gopass as a credential store
This change adds support for `gopass` as a credential store, utilizing the upstream library. Closes: #138 Closes: #166 Signed-off-by: sudoforge <[email protected]>
1 parent 9d9d252 commit ae84d35

File tree

1,347 files changed

+421858
-49
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,347 files changed

+421858
-49
lines changed

.github/workflows/build.yml

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,26 +70,30 @@ jobs:
7070
if: startsWith(matrix.os, 'macOS-')
7171
run: |
7272
brew install pass
73+
-
74+
name: Install gopass
75+
env:
76+
GOPASS_VERSION: v1.15.15
77+
run: go install github.com/gopasspw/gopass@${{ env.GOPASS_VERSION }}
7378
-
7479
name: GPG conf
75-
if: ${{ !startsWith(matrix.os, 'windows-') }}
7680
uses: actions/github-script@v7
7781
id: gpg
7882
with:
7983
script: |
8084
const fs = require('fs');
81-
const gnupgfolder = `${require('os').homedir()}/.gnupg`;
85+
const sep = require('path').sep;
86+
const gnupgfolder = `${require('os').homedir()}${sep}.gnupg`;
8287
if (!fs.existsSync(gnupgfolder)){
8388
fs.mkdirSync(gnupgfolder);
8489
}
85-
fs.copyFile('.github/workflows/fixtures/gpg.conf', `${gnupgfolder}/gpg.conf`, (err) => {
90+
fs.copyFile('.github/workflows/fixtures/gpg.conf', `${gnupgfolder}${sep}gpg.conf`, (err) => {
8691
if (err) throw err;
8792
});
8893
core.setOutput('key', fs.readFileSync('.github/workflows/fixtures/7D851EB72D73BDA0.key', {encoding: 'utf8'}));
8994
core.setOutput('passphrase', fs.readFileSync('.github/workflows/fixtures/7D851EB72D73BDA0.pass', {encoding: 'utf8'}));
9095
-
9196
name: Import GPG key
92-
if: ${{ !startsWith(matrix.os, 'windows-') }}
9397
uses: crazy-max/ghaction-import-gpg@v6
9498
with:
9599
gpg_private_key: ${{ steps.gpg.outputs.key }}
@@ -101,6 +105,18 @@ jobs:
101105
run: |
102106
pass init 7D851EB72D73BDA0
103107
shell: bash
108+
-
109+
name: Init gopass
110+
run: |
111+
gopass config mounts.path "${HOME}/.gopass-password-store" 1>/dev/null
112+
gopass config core.autopush false 1>/dev/null
113+
gopass config core.autosync false 1>/dev/null
114+
gopass config core.exportkeys false 1>/dev/null
115+
gopass config core.notifications false 1>/dev/null
116+
gopass config core.color false 1>/dev/null
117+
gopass config core.nopager true 1>/dev/null
118+
gopass init --crypto gpgcli --storage fs 7D851EB72D73BDA0
119+
shell: bash
104120
-
105121
name: Test
106122
run: |

Dockerfile

Lines changed: 28 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ ARG XX_VERSION=1.6.1
77
ARG OSXCROSS_VERSION=11.3-r7-debian
88
ARG GOLANGCI_LINT_VERSION=v1.64.5
99
ARG DEBIAN_FRONTEND=noninteractive
10+
ARG GOPASS_VERSION=v1.15.5
1011

1112
ARG PACKAGE=github.com/docker/docker-credential-helpers
1213

@@ -70,12 +71,19 @@ RUN xx-apt-get install -y binutils gcc libc6-dev libgcc-11-dev libsecret-1-dev p
7071

7172
FROM base AS test
7273
ARG DEBIAN_FRONTEND
74+
ARG GOPASS_VERSION
7375
RUN xx-apt-get install -y dbus-x11 gnome-keyring gpg-agent gpgconf libsecret-1-dev pass
76+
RUN --mount=type=bind,target=. \
77+
--mount=type=cache,target=/root/.cache \
78+
--mount=type=cache,target=/go/pkg/mod \
79+
GOFLAGS='' go install github.com/gopasspw/gopass@${GOPASS_VERSION}
7480
RUN --mount=type=bind,target=. \
7581
--mount=type=cache,target=/root/.cache \
7682
--mount=type=cache,target=/go/pkg/mod <<EOT
7783
set -e
84+
7885
cp -r .github/workflows/fixtures /root/.gnupg
86+
chmod 0400 /root/.gnupg
7987
gpg-connect-agent "RELOADAGENT" /bye
8088
gpg --import --batch --yes /root/.gnupg/7D851EB72D73BDA0.key
8189
gpg --update-trustdb
@@ -84,7 +92,20 @@ RUN --mount=type=bind,target=. \
8492
gpg-connect-agent "KEYINFO 3E2D1142AA59E08E16B7E2C64BA6DDC773B1A627" /bye
8593
gpg-connect-agent "PRESET_PASSPHRASE BA83FC8947213477F28ADC019F6564A956456163 -1 77697468207374757069642070617373706872617365" /bye
8694
gpg-connect-agent "KEYINFO BA83FC8947213477F28ADC019F6564A956456163" /bye
95+
96+
# initialize password store for `pass`
8797
pass init 7D851EB72D73BDA0
98+
99+
# initialize password store for `gopass`
100+
gopass config mounts.path /root/.gopass-password-store 1>/dev/null
101+
gopass config core.autopush false 1>/dev/null
102+
gopass config core.autosync false 1>/dev/null
103+
gopass config core.exportkeys false 1>/dev/null
104+
gopass config core.notifications false 1>/dev/null
105+
gopass config core.color false 1>/dev/null
106+
gopass config core.nopager true 1>/dev/null
107+
gopass init --crypto gpgcli --storage fs 7D851EB72D73BDA0
108+
88109
gpg -k
89110

90111
mkdir /out
@@ -108,7 +129,8 @@ RUN --mount=type=bind,target=. \
108129
--mount=type=bind,source=/tmp/.revision,target=/tmp/.revision,from=version <<EOT
109130
set -ex
110131
xx-go --wrap
111-
make build-pass build-secretservice PACKAGE=$PACKAGE VERSION=$(cat /tmp/.version) REVISION=$(cat /tmp/.revision) DESTDIR=/out
132+
make build-gopass build-pass build-secretservice PACKAGE=$PACKAGE VERSION=$(cat /tmp/.version) REVISION=$(cat /tmp/.revision) DESTDIR=/out
133+
xx-verify /out/docker-credential-gopass
112134
xx-verify /out/docker-credential-pass
113135
xx-verify /out/docker-credential-secretservice
114136
EOT
@@ -125,7 +147,8 @@ RUN --mount=type=bind,target=. \
125147
export MACOSX_VERSION_MIN=$(make print-MACOSX_DEPLOYMENT_TARGET)
126148
xx-go --wrap
127149
go install std
128-
make build-osxkeychain build-pass PACKAGE=$PACKAGE VERSION=$(cat /tmp/.version) REVISION=$(cat /tmp/.revision) DESTDIR=/out
150+
make build-gopass build-osxkeychain build-pass PACKAGE=$PACKAGE VERSION=$(cat /tmp/.version) REVISION=$(cat /tmp/.revision) DESTDIR=/out
151+
xx-verify /out/docker-credential-gopass
129152
xx-verify /out/docker-credential-osxkeychain
130153
xx-verify /out/docker-credential-pass
131154
EOT
@@ -139,7 +162,9 @@ RUN --mount=type=bind,target=. \
139162
--mount=type=bind,source=/tmp/.revision,target=/tmp/.revision,from=version <<EOT
140163
set -ex
141164
xx-go --wrap
142-
make build-wincred PACKAGE=$PACKAGE VERSION=$(cat /tmp/.version) REVISION=$(cat /tmp/.revision) DESTDIR=/out
165+
make build-gopass build-wincred PACKAGE=$PACKAGE VERSION=$(cat /tmp/.version) REVISION=$(cat /tmp/.revision) DESTDIR=/out
166+
mv /out/docker-credential-gopass /out/docker-credential-gopass.exe
167+
xx-verify /out/docker-credential-gopass.exe
143168
mv /out/docker-credential-wincred /out/docker-credential-wincred.exe
144169
xx-verify /out/docker-credential-wincred.exe
145170
EOT

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,12 @@ clean:
3838
rm -rf bin
3939

4040
.PHONY: build-%
41-
build-%: # build, can be one of build-osxkeychain build-pass build-secretservice build-wincred
41+
build-%: # build, can be one of build-gopass build-osxkeychain build-pass build-secretservice build-wincred
4242
go build -trimpath -ldflags="$(GO_LDFLAGS) -X ${GO_PKG}/credentials.Name=docker-credential-$*" -o "$(DESTDIR)/docker-credential-$*" ./$*/cmd/
4343

4444
# aliases for build-* targets
45-
.PHONY: osxkeychain secretservice pass wincred
45+
.PHONY: gopass osxkeychain secretservice pass wincred
46+
gopass: build-gopass
4647
osxkeychain: build-osxkeychain
4748
secretservice: build-secretservice
4849
pass: build-pass

README.md

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -80,15 +80,26 @@ You can see examples of each function in the [client](https://godoc.org/github.c
8080

8181
### Available programs
8282

83-
1. osxkeychain: Provides a helper to use the OS X keychain as credentials store.
84-
2. secretservice: Provides a helper to use the D-Bus secret service as credentials store.
85-
3. wincred: Provides a helper to use Windows credentials manager as store.
86-
4. pass: Provides a helper to use `pass` as credentials store.
83+
- gopass: Provides a helper to use `gopass` as credentials store.
84+
- osxkeychain: Provides a helper to use the OS X keychain as credentials store.
85+
- pass: Provides a helper to use `pass` as credentials store.
86+
- secretservice: Provides a helper to use the D-Bus secret service as credentials store.
87+
- wincred: Provides a helper to use Windows credentials manager as store.
8788

88-
#### Note
89+
#### Note regarding `gopass`
8990

90-
`pass` needs to be configured for `docker-credential-pass` to work properly.
91-
It must be initialized with a `gpg2` key ID. Make sure your GPG key exists is in `gpg2` keyring as `pass` uses `gpg2` instead of the regular `gpg`.
91+
`gopass` requires manual intervention in order for `docker-credential-gopass` to
92+
work properly: a password store must be initialized. Please ensure to review the
93+
upstream [quick start guide][gopass-quick-start] for more information.
94+
95+
[gopass-quick-start]: https://github.com/gopasspw/gopass#quick-start-guide
96+
97+
#### Note regarding `pass`
98+
99+
`pass` requires manual interview in order for `docker-credential-pass` to
100+
work properly. It must be initialized with a `gpg2` key ID. Make sure your GPG
101+
key exists is in `gpg2` keyring as `pass` uses `gpg2` instead of the regular
102+
`gpg`.
92103

93104
## Development
94105

go.mod

Lines changed: 33 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/docker/docker-credential-helpers
22

3-
go 1.21
3+
go 1.23.2
44

55
retract (
66
v0.9.1 // osxkeychain: a regression caused backward-incompatibility with earlier versions
@@ -9,7 +9,38 @@ retract (
99

1010
require (
1111
github.com/danieljoos/wincred v1.2.2
12+
github.com/gopasspw/gopass v1.15.15
1213
github.com/keybase/go-keychain v0.0.1
1314
)
1415

15-
require golang.org/x/sys v0.20.0 // indirect
16+
require (
17+
al.essio.dev/pkg/shellescape v1.5.1 // indirect
18+
filippo.io/age v1.2.1-0.20240618131852-7eedd929a6cf // indirect
19+
filippo.io/edwards25519 v1.1.0 // indirect
20+
github.com/ProtonMail/go-crypto v1.1.2 // indirect
21+
github.com/blang/semver/v4 v4.0.0 // indirect
22+
github.com/caspr-io/yamlpath v0.0.0-20200722075116-502e8d113a9b // indirect
23+
github.com/cloudflare/circl v1.5.0 // indirect
24+
github.com/cpuguy83/go-md2man/v2 v2.0.5 // indirect
25+
github.com/dustin/go-humanize v1.0.1 // indirect
26+
github.com/fatih/color v1.18.0 // indirect
27+
github.com/godbus/dbus/v5 v5.1.0 // indirect
28+
github.com/google/go-cmp v0.6.0 // indirect
29+
github.com/google/go-github/v61 v61.0.0 // indirect
30+
github.com/google/go-querystring v1.1.0 // indirect
31+
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
32+
github.com/mattn/go-colorable v0.1.13 // indirect
33+
github.com/mattn/go-isatty v0.0.20 // indirect
34+
github.com/nbutton23/zxcvbn-go v0.0.0-20210217022336-fa2cb2858354 // indirect
35+
github.com/rs/zerolog v1.33.0 // indirect
36+
github.com/russross/blackfriday/v2 v2.1.0 // indirect
37+
github.com/twpayne/go-pinentry v0.3.0 // indirect
38+
github.com/urfave/cli/v2 v2.27.5 // indirect
39+
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 // indirect
40+
github.com/zalando/go-keyring v0.2.6 // indirect
41+
golang.org/x/crypto v0.32.0 // indirect
42+
golang.org/x/exp v0.0.0-20241108190413-2d47ceb2692f // indirect
43+
golang.org/x/sys v0.29.0 // indirect
44+
golang.org/x/term v0.28.0 // indirect
45+
gopkg.in/yaml.v3 v3.0.1 // indirect
46+
)

go.sum

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,99 @@
1+
al.essio.dev/pkg/shellescape v1.5.1 h1:86HrALUujYS/h+GtqoB26SBEdkWfmMI6FubjXlsXyho=
2+
al.essio.dev/pkg/shellescape v1.5.1/go.mod h1:6sIqp7X2P6mThCQ7twERpZTuigpr6KbZWtls1U8I890=
3+
filippo.io/age v1.2.1-0.20240618131852-7eedd929a6cf h1:3hBTgZCvtC31eCc8CWH0w+55Yn/R/HI3Of4Zb5TAuWU=
4+
filippo.io/age v1.2.1-0.20240618131852-7eedd929a6cf/go.mod h1:JL9ew2lTN+Pyft4RiNGguFfOpewKwSHm5ayKD/A4004=
5+
filippo.io/edwards25519 v1.1.0 h1:FNf4tywRC1HmFuKW5xopWpigGjJKiJSV0Cqo0cJWDaA=
6+
filippo.io/edwards25519 v1.1.0/go.mod h1:BxyFTGdWcka3PhytdK4V28tE5sGfRvvvRV7EaN4VDT4=
7+
github.com/ProtonMail/go-crypto v1.1.2 h1:A7JbD57ThNqh7XjmHE+PXpQ3Dqt3BrSAC0AL0Go3KS0=
8+
github.com/ProtonMail/go-crypto v1.1.2/go.mod h1:rA3QumHc/FZ8pAHreoekgiAbzpNsfQAosU5td4SnOrE=
9+
github.com/blang/semver/v4 v4.0.0 h1:1PFHFE6yCCTv8C1TeyNNarDzntLi7wMI5i/pzqYIsAM=
10+
github.com/blang/semver/v4 v4.0.0/go.mod h1:IbckMUScFkM3pff0VJDNKRiT6TG/YpiHIM2yvyW5YoQ=
11+
github.com/caspr-io/yamlpath v0.0.0-20200722075116-502e8d113a9b h1:2K3B6Xm7/lnhOugeGB3nIk50bZ9zhuJvXCEfUuL68ik=
12+
github.com/caspr-io/yamlpath v0.0.0-20200722075116-502e8d113a9b/go.mod h1:4rP9T6iHCuPAIDKdNaZfTuuqSIoQQvFctNWIAUI1rlg=
13+
github.com/cloudflare/circl v1.5.0 h1:hxIWksrX6XN5a1L2TI/h53AGPhNHoUBo+TD1ms9+pys=
14+
github.com/cloudflare/circl v1.5.0/go.mod h1:uddAzsPgqdMAYatqJ0lsjX1oECcQLIlRpzZh3pJrofs=
15+
github.com/coreos/go-systemd/v22 v22.5.0/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc=
16+
github.com/cpuguy83/go-md2man/v2 v2.0.5 h1:ZtcqGrnekaHpVLArFSe4HK5DoKx1T0rq2DwVB0alcyc=
17+
github.com/cpuguy83/go-md2man/v2 v2.0.5/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o=
118
github.com/danieljoos/wincred v1.2.2 h1:774zMFJrqaeYCK2W57BgAem/MLi6mtSE47MB6BOJ0i0=
219
github.com/danieljoos/wincred v1.2.2/go.mod h1:w7w4Utbrz8lqeMbDAK0lkNJUv5sAOkFi7nd/ogr0Uh8=
20+
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
321
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
422
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
23+
github.com/dustin/go-humanize v1.0.1 h1:GzkhY7T5VNhEkwH0PVJgjz+fX1rhBrR7pRT3mDkpeCY=
24+
github.com/dustin/go-humanize v1.0.1/go.mod h1:Mu1zIs6XwVuF/gI1OepvI0qD18qycQx+mFykh5fBlto=
25+
github.com/fatih/color v1.18.0 h1:S8gINlzdQ840/4pfAwic/ZE0djQEH3wM94VfqLTZcOM=
26+
github.com/fatih/color v1.18.0/go.mod h1:4FelSpRwEGDpQ12mAdzqdOukCy4u8WUtOY6lkT/6HfU=
27+
github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA=
28+
github.com/godbus/dbus/v5 v5.1.0 h1:4KLkAxT3aOY8Li4FRJe/KvhoNFFxo0m6fNuFUO8QJUk=
29+
github.com/godbus/dbus/v5 v5.1.0/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA=
30+
github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU=
31+
github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
32+
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
33+
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
34+
github.com/google/go-github/v61 v61.0.0 h1:VwQCBwhyE9JclCI+22/7mLB1PuU9eowCXKY5pNlu1go=
35+
github.com/google/go-github/v61 v61.0.0/go.mod h1:0WR+KmsWX75G2EbpyGsGmradjo3IiciuI4BmdVCobQY=
36+
github.com/google/go-querystring v1.1.0 h1:AnCroh3fv4ZBgVIf1Iwtovgjaw/GiKJo8M8yD/fhyJ8=
37+
github.com/google/go-querystring v1.1.0/go.mod h1:Kcdr2DB4koayq7X8pmAG4sNG59So17icRSOU623lUBU=
38+
github.com/gopasspw/gopass v1.15.15 h1:7s8nmiWLaL2oqbd05Wv6QpqJ7eUASC4XUG2wHEgB328=
39+
github.com/gopasspw/gopass v1.15.15/go.mod h1:WfOPlAM2S1Uqi9jSt9B8e5+HICaO/bdyJG4Bn86ROT0=
40+
github.com/hashicorp/golang-lru/v2 v2.0.7 h1:a+bsQ5rvGLjzHuww6tVxozPZFVghXaHOwFs4luLUK2k=
41+
github.com/hashicorp/golang-lru/v2 v2.0.7/go.mod h1:QeFd9opnmA6QUJc5vARoKUSoFhyfM2/ZepoAG6RGpeM=
542
github.com/keybase/go-keychain v0.0.1 h1:way+bWYa6lDppZoZcgMbYsvC7GxljxrskdNInRtuthU=
643
github.com/keybase/go-keychain v0.0.1/go.mod h1:PdEILRW3i9D8JcdM+FmY6RwkHGnhHxXwkPPMeUgOK1k=
44+
github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA=
45+
github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg=
46+
github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM=
47+
github.com/mattn/go-isatty v0.0.19/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
48+
github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY=
49+
github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y=
50+
github.com/nbutton23/zxcvbn-go v0.0.0-20210217022336-fa2cb2858354 h1:4kuARK6Y6FxaNu/BnU2OAaLF86eTVhP2hjTB6iMvItA=
51+
github.com/nbutton23/zxcvbn-go v0.0.0-20210217022336-fa2cb2858354/go.mod h1:KSVJerMDfblTH7p5MZaTt+8zaT2iEk3AkVb9PQdZuE8=
52+
github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
53+
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
754
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
855
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
56+
github.com/rs/xid v1.5.0/go.mod h1:trrq9SKmegXys3aeAKXMUTdJsYXVwGY3RLcfgqegfbg=
57+
github.com/rs/zerolog v1.33.0 h1:1cU2KZkvPxNyfgEmhHAz/1A9Bz+llsdYzklWFzgp0r8=
58+
github.com/rs/zerolog v1.33.0/go.mod h1:/7mN4D5sKwJLZQ2b/znpjC3/GQWY/xaDXUM0kKWRHss=
59+
github.com/russross/blackfriday/v2 v2.1.0 h1:JIOH55/0cWyOuilr9/qlrm0BSXldqnqwMsf35Ld67mk=
60+
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
61+
github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4=
962
github.com/stretchr/objx v0.5.2 h1:xuMeJ0Sdp5ZMRXx/aWO6RZxdr3beISkG5/G/aIRr3pY=
1063
github.com/stretchr/objx v0.5.2/go.mod h1:FRsXN1f5AsAjCGJKqEizvkpNtU+EGNCLh3NxZ/8L+MA=
64+
github.com/stretchr/testify v1.1.4/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
1165
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
1266
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
67+
github.com/twpayne/go-pinentry v0.3.0 h1:Rr+fEOZXmeItOb4thjeVaBWJKB9Xa/eojolycyF/26c=
68+
github.com/twpayne/go-pinentry v0.3.0/go.mod h1:iOIZD+9np/2V24OdCGos7Y1/xX90wc6VEAZsgb+r9D4=
69+
github.com/urfave/cli/v2 v2.27.5 h1:WoHEJLdsXr6dDWoJgMq/CboDmyY/8HMMH1fTECbih+w=
70+
github.com/urfave/cli/v2 v2.27.5/go.mod h1:3Sevf16NykTbInEnD0yKkjDAeZDS0A6bzhBH5hrMvTQ=
71+
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1 h1:gEOO8jv9F4OT7lGCjxCBTO/36wtF6j2nSip77qHd4x4=
72+
github.com/xrash/smetrics v0.0.0-20240521201337-686a1a2994c1/go.mod h1:Ohn+xnUBiLI6FVj/9LpzZWtj1/D6lUovWYBkxHVV3aM=
73+
github.com/zalando/go-keyring v0.2.6 h1:r7Yc3+H+Ux0+M72zacZoItR3UDxeWfKTcabvkI8ua9s=
74+
github.com/zalando/go-keyring v0.2.6/go.mod h1:2TCrxYrbUNYfNS/Kgy/LSrkSQzZ5UPVH85RwfczwvcI=
75+
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
76+
golang.org/x/crypto v0.32.0 h1:euUpcYgM8WcP71gNpTqQCn6rC2t6ULUPiOzfWaXVVfc=
77+
golang.org/x/crypto v0.32.0/go.mod h1:ZnnJkOaASj8g0AjIduWNlq2NRxL0PlBrbKVyZ6V/Ugc=
78+
golang.org/x/exp v0.0.0-20241108190413-2d47ceb2692f h1:XdNn9LlyWAhLVp6P/i8QYBW+hlyhrhei9uErw2B5GJo=
79+
golang.org/x/exp v0.0.0-20241108190413-2d47ceb2692f/go.mod h1:D5SMRVC3C2/4+F/DB1wZsLRnSNimn2Sp/NPsCrsv8ak=
80+
golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
81+
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
82+
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
83+
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
84+
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
85+
golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
1386
golang.org/x/sys v0.20.0 h1:Od9JTbYCk261bKm4M/mw7AklTlFYIa0bIp9BgSm1S8Y=
1487
golang.org/x/sys v0.20.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
88+
golang.org/x/sys v0.29.0 h1:TPYlXGxvx1MGTn2GiZDhnjPA9wZzZeGKHHmKhHYvgaU=
89+
golang.org/x/sys v0.29.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
90+
golang.org/x/term v0.28.0 h1:/Ts8HFuMR2E6IP/jlo7QVLZHggjKQbhu/7H0LJFr3Gg=
91+
golang.org/x/term v0.28.0/go.mod h1:Sw/lC2IAUZ92udQNf3WodGtn4k/XoLyZoh8v/8uiwek=
92+
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
93+
golang.org/x/tools v0.0.0-20190624222133-a101b041ded4/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc=
94+
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
95+
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
96+
gopkg.in/yaml.v3 v3.0.0-20200121175148-a6ecf24a6d71/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
1597
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
1698
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
99+
gotest.tools/v3 v3.0.2/go.mod h1:3SzNCllyD9/Y+b5r9JIKQ474KzkZyqLqEfYqMsX94Bk=

0 commit comments

Comments
 (0)