We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c676c98 commit 08bf3aeCopy full SHA for 08bf3ae
tests/conftest.py
@@ -30,8 +30,10 @@ def tmp_commitizen_project_with_gpg(tmp_commitizen_project):
30
_gpg_file = tmp_commitizen_project.join("gpg_setup")
31
_signer_mail = "action@github.com"
32
with open(_gpg_file, "w", newline="") as f:
33
- f.write("Key-Type: default" + os.linesep)
34
- f.write("Subkey-Type: default" + os.linesep)
+ f.write("Key-Type: RSA" + os.linesep)
+ f.write("Key-Length: 2048" + os.linesep)
35
+ f.write("Subkey-Type: RSA" + os.linesep)
36
+ f.write("Subkey-Length: 2048" + os.linesep)
37
f.write("Name-Real: GitHub Action" + os.linesep)
38
f.write("Name-Comment: with stupid passphrase" + os.linesep)
39
f.write(f"Name-Email: {_signer_mail}" + os.linesep)
0 commit comments