forked from shimataro/ssh-key-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from niaid/imp-sec-issues
Switch scan to typescript
- Loading branch information
Showing
9 changed files
with
803 additions
and
5,498 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
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 |
---|---|---|
|
@@ -46,7 +46,9 @@ jobs: | |
key: ${{ secrets.SSH_KEY_PEM }} | ||
known_hosts: unnecessary | ||
- name: git clone through SSH | ||
run: git clone [email protected]:niaid/monarch-actions-key-writer.git tmp | ||
run: | | ||
ssh -vT [email protected] || true | ||
git clone [email protected]:niaid/monarch-actions-key-writer.git tmp | ||
ssh-pkcs8: | ||
name: Connect to github.com (PKCS8 format) | ||
|
@@ -64,7 +66,9 @@ jobs: | |
key: ${{ secrets.SSH_KEY_PKCS8 }} | ||
known_hosts: unnecessary | ||
- name: git clone through SSH | ||
run: git clone [email protected]:niaid/monarch-actions-key-writer.git tmp | ||
run: | | ||
ssh -vT [email protected] || true | ||
git clone [email protected]:niaid/monarch-actions-key-writer.git tmp | ||
ssh-rfc4716: | ||
name: Connect to github.com (RFC4716 format) | ||
|
@@ -82,7 +86,9 @@ jobs: | |
key: ${{ secrets.SSH_KEY_RFC4716 }} | ||
known_hosts: unnecessary | ||
- name: git clone through SSH | ||
run: git clone [email protected]:niaid/monarch-actions-key-writer.git tmp | ||
run: | | ||
ssh -vT [email protected] || true | ||
git clone [email protected]:niaid/monarch-actions-key-writer.git tmp | ||
key_if_exists_replace-key_exists: | ||
name: if_key_exists=replace / key exists | ||
|
@@ -106,7 +112,9 @@ jobs: | |
known_hosts: unnecessary | ||
if_key_exists: replace | ||
- name: git clone through SSH | ||
run: git clone [email protected]:niaid/monarch-actions-key-writer.git tmp | ||
run: | | ||
ssh -vT [email protected] || true | ||
git clone [email protected]:niaid/monarch-actions-key-writer.git tmp | ||
key_if_exists_replace-key_doesnt_exist: | ||
name: if_key_exists=replace / key doesn't exist | ||
|
@@ -125,7 +133,9 @@ jobs: | |
known_hosts: unnecessary | ||
if_key_exists: replace | ||
- name: git clone through SSH | ||
run: git clone [email protected]:niaid/monarch-actions-key-writer.git tmp | ||
run: | | ||
ssh -vT [email protected] || true | ||
git clone [email protected]:niaid/monarch-actions-key-writer.git tmp | ||
key_if_exists_ignore-key_exists: | ||
name: if_key_exists=ignore / key exists | ||
|
@@ -149,7 +159,9 @@ jobs: | |
known_hosts: unnecessary | ||
if_key_exists: ignore | ||
- name: git clone through SSH | ||
run: git clone [email protected]:niaid/monarch-actions-key-writer.git tmp | ||
run: | | ||
ssh -vT [email protected] || true | ||
git clone [email protected]:niaid/monarch-actions-key-writer.git tmp | ||
key_if_exists_ignore-key_doesnt_exist: | ||
name: if_key_exists=ignore / key doesn't exist | ||
|
@@ -168,7 +180,9 @@ jobs: | |
known_hosts: unnecessary | ||
if_key_exists: ignore | ||
- name: git clone through SSH | ||
run: git clone [email protected]:niaid/monarch-actions-key-writer.git tmp | ||
run: | | ||
ssh -vT [email protected] || true | ||
git clone [email protected]:niaid/monarch-actions-key-writer.git tmp | ||
key_if_exists_fail-key_exists: | ||
name: if_key_exists=fail / key exists | ||
|
@@ -193,7 +207,9 @@ jobs: | |
if_key_exists: fail | ||
continue-on-error: true | ||
- name: git clone through SSH | ||
run: git clone [email protected]:niaid/monarch-actions-key-writer.git tmp | ||
run: | | ||
ssh -vT [email protected] || true | ||
git clone [email protected]:niaid/monarch-actions-key-writer.git tmp | ||
key_if_exists_fail-key_doesnt_exist: | ||
name: if_key_exists=fail / key doesn't exist | ||
|
@@ -212,4 +228,6 @@ jobs: | |
known_hosts: unnecessary | ||
if_key_exists: fail | ||
- name: git clone through SSH | ||
run: git clone [email protected]:niaid/monarch-actions-key-writer.git tmp | ||
run: | | ||
ssh -vT [email protected] || true | ||
git clone [email protected]:niaid/monarch-actions-key-writer.git tmp |
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.