File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -120,6 +120,8 @@ To publish a gpg key:
120120
121121``` shell
122122gpg --send-keys 5BE1414D5EAF81B48F2E77E1999F818C080AF9C1
123+ # # search keys
124+ gpg --keyserver keyserver.ubuntu.com --search-keys 5BE1414D5EAF81B48F2E77E1999F818C080AF9C1
123125````
124126
125127where ` 5BE1414D5EAF81B48F2E77E1999F818C080AF9C1` is the public key
@@ -147,3 +149,26 @@ https://docs.github.com/en/packages/using-github-packages-with-your-projects-eco
147149- Step Security - Secure Your Repo Analysis + auto PR - https://app.stepsecurity.io/securerepo
148150- Step Security - For Repo - https://app.stepsecurity.io/github/cdimascio/actions/dashboard
149151- OpenSSF Badget Analysis https://www.bestpractices.dev/en/projects/9407
152+
153+
154+ # ## GPG Key notes
155+
156+ - ` cat ~ /.gnupg/gpg.conf`
157+ Note that the keyserver is specified
158+ ```
159+ auto-key-retrieve
160+ no-emit-version
161+ keyserver hkp://keyserver.ubuntu.com
162+ ```
163+
164+ ```
165+
166+ Send and validate keys are present on the keyserver
167+ ``shell
168+ # send public key
169+ gpg --keyserver keyserver.ubuntu.com --send-keys D4E6A3593F7EC1BBC039AC99896F36215850D4C7
170+
171+ # search public key
172+ gpg --keyserver keyserver.ubuntu.com --search-keys D4E6A3593F7EC1BBC039AC99896F36215850D4C7
173+
174+ ```
You can’t perform that action at this time.
0 commit comments