-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ROU-11456: Small improvements in pipelines (#441)
This PR is for adding small improvements on the github actions. ### What was happening - The way the github actions were accessing to the secrets and passing as input parameter to other actions; - The version of the external github action `actions/checkout` ### What was done - Now, github actions that require secrets access to them directly - `actions/checkout` was standardized to v4 - Tested changes in the sandbox ### Checklist - [x] tested locally - [ ] documented the code - [ ] clean all warnings and errors of eslint - [ ] requires changes in OutSystems (if so, provide a module with changes) - [ ] requires new sample page in OutSystems (if so, provide a module with changes)
- Loading branch information
Showing
4 changed files
with
4 additions
and
26 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,13 @@ | ||
name: 'setup-gpg' | ||
description: 'Prepare to get following commits signed' | ||
inputs: | ||
gpgPriv: | ||
description: 'GPG Private key' | ||
required: true | ||
default: '' | ||
gpgPassPhrase: | ||
description: 'GPG passphrase' | ||
required: false | ||
default: '""' | ||
|
||
runs: | ||
using: composite | ||
steps: | ||
- name: Import and load GPG key | ||
uses: crazy-max/ghaction-import-gpg@v6 | ||
with: | ||
gpg_private_key: ${{ inputs.gpgPriv }} | ||
passphrase: ${{ inputs.gpgPassPhrase }} | ||
gpg_private_key: ${{ secrets.GPG_SIGN_KEY }} | ||
passphrase: ${{ secrets.GPG_PASSPHRASE }} | ||
git_user_signingkey: true | ||
git_commit_gpgsign: true |
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