forked from argoproj/argo-cd
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bump version * chore: update Kex-Algorithms * chore upgrade base image for test containers Ubuntu:22.04 * chore: upgrade base image to ubuntu:20.04
- Loading branch information
1 parent
ceac379
commit c66810b
Showing
7 changed files
with
22 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.3.4-cap-CR-13317-fixing-events | ||
2.3.4-cap-CR-13327-bump-ubuntu-version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,14 +11,14 @@ import ( | |
// Unfortunately, crypto/ssh does not offer public constants or list for | ||
// this. | ||
var SupportedSSHKeyExchangeAlgorithms = []string{ | ||
"diffie-hellman-group1-sha1", | ||
"diffie-hellman-group14-sha1", | ||
"curve25519-sha256", | ||
"[email protected]", | ||
"ecdh-sha2-nistp256", | ||
"ecdh-sha2-nistp384", | ||
"ecdh-sha2-nistp521", | ||
"[email protected]", | ||
"diffie-hellman-group-exchange-sha1", | ||
"diffie-hellman-group-exchange-sha256", | ||
"diffie-hellman-group14-sha256", | ||
"diffie-hellman-group14-sha1", | ||
} | ||
|
||
// List of default key exchange algorithms to use. We use those that are | ||
|