-
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.
- Loading branch information
Chris McIntosh
committed
Jul 1, 2021
1 parent
9392468
commit 83409d1
Showing
13 changed files
with
52 additions
and
21 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
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
## Secrets with Actions {docsify-ignore-all} | ||
|
||
Often it is necessary to use secrets within your workflows. Whether it is to authenticate to the API to notify users or connect to a cloud environment to deploy code. [GitHub Secrets](https://docs.github.com/en/actions/reference/encrypted-secrets) is the way you connect your secrets with your workflows. | ||
|
||
Secrets can currently live at many levels: | ||
- Organization | ||
- Repository | ||
- Environment | ||
|
||
|
||
### Limits | ||
[Per the GitHub documentation](https://docs.github.com/en/actions/reference/encrypted-secrets#limits-for-secrets) the limits for secrets are: | ||
- 1000 Organization secrets | ||
- 100 Repository secrets | ||
- 100 Environment secrets | ||
- 64KB in size | ||
- [`gpg`](https://www.gnupg.org/gph/de/manual/r1023.html) can be used to encrypt files and store them in the repo if you need more space | ||
|
||
### Hiding Secrets | ||
Secrets are encrypted with a [libsodium sealed box](https://libsodium.gitbook.io/doc/public-key_cryptography/sealed_boxes) and are not readable once you have stored them in your repository. | ||
When secrets would get printed to the workflow logs, GitHub attempts to hide them on a best effort basis. This helps prevent accidental leaks of your secrets, but diligent users can easily find ways to get your secrets leaked, so ensure that only trusted users have write access to your workflows when using secrets | ||
|
File renamed without changes.
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
## Using Artifacts In Actions {docsify-ignore-all} | ||
|
||
# Exercise 6 - Uploading and Downloading Artifacts in Actions | ||
## Exercise 6 - Uploading and Downloading Artifacts in Actions | ||
[exercise 6 upload and download artifacts](Exercises/06-Upload-Download-Artifacts.md ':include') | ||
|
||
# Exercise 6 A - Uploading and Downloading Artifacts with Artifactory in Actions | ||
## Exercise 6 A - Uploading and Downloading Artifacts with Artifactory in Actions | ||
[exercise 6 upload and download artifacts with artifactory](Exercises/06.A-Upload-Download-Artifacts-%20from%20Artifactory.md ':include') |
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