-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Use a github variable containing 1password secret references #1921
Merged
jcpitre
merged 4 commits into
master
from
1906-publishing-maven-package-github-action-is-failing-2
Nov 11, 2024
Merged
Changes from 2 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
name: 'Extract secrets from 1Password' | ||
description: 'Extracts secrets from 1Password using a Github variable containing multiple secret references' | ||
inputs: | ||
VARIABLES_TO_EXTRACT: | ||
description: 'A list of comma separated secrets to extract' | ||
required: true | ||
type: string | ||
ONE_PASSWORD_SECRET_REFERENCES: | ||
description: 'The contents of the ONE_PASSWORD_SECRET_REFERENCES variable, containing key-value pairs of secret references' | ||
required: true | ||
type: string | ||
OP_SERVICE_ACCOUNT_TOKEN: | ||
description: 'The 1Password service account token' | ||
required: true | ||
type: string | ||
|
||
runs: | ||
using: 'composite' | ||
steps: | ||
- name: Extract 1password secret references for specific variables | ||
id: extract_secret_references | ||
shell: bash | ||
# One possible error is that the specified variable name does not exist in the ONE_PASSWORD_SECRET_REFERENCES variable. | ||
# In that case just go over it | ||
continue-on-error: true | ||
run: | | ||
# Replace command with spaces to it's easier to iterate over the key-value pairs | ||
keys=$(echo "${{ inputs.VARIABLES_TO_EXTRACT }}" | tr ',' ' ') | ||
for key in $keys; do | ||
# Remove leading and trailing spaces | ||
variable_name=$(echo "$key" | sed 's/^ *//;s/ *$//') | ||
value=$(echo "${{ inputs.ONE_PASSWORD_SECRET_REFERENCES }}" | grep "^$variable_name *=" | cut -d'=' -f2- | sed 's/^ *//;s/[ \r]*$//') | ||
# For each variable to extract create an env variable with the secret reference as a value | ||
echo "$variable_name=$value" >> $GITHUB_ENV | ||
echo "$variable_name=$value" | ||
done | ||
|
||
- name: Load secrets from 1Password | ||
id: onepw_secrets | ||
uses: 1password/[email protected] | ||
with: | ||
export-env: true # Export loaded secrets as environment variables | ||
env: | ||
# 1password/load-secrets-action will take any defined env variable and try to get the secret value from 1Password | ||
# I think it does this only for variables that start with op:// | ||
# That means all variables defined in the previous step will be loaded from 1Password if they exist. | ||
OP_SERVICE_ACCOUNT_TOKEN: ${{ inputs.OP_SERVICE_ACCOUNT_TOKEN }} # This is required to connect to the vault in our 1Password account. | ||
|
||
# After the previous step all variables specified in VARIABLES_TO_EXTRACT should have an env variable with the | ||
# secret as a value. If they don't exist in 1Password they will be left as is, meaning that will still contain the | ||
# secret reference. |
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,10 +11,16 @@ jobs: | |
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
# Get the version from the commit. This will depend on the trigger of the workflow | ||
# If the trigger is release, the version will be the tag on the commit. | ||
# If the trigger is a workflow_dispatch, the version will be the branch name, which is | ||
# not really useful. | ||
- id: get_version | ||
uses: battila7/get-version-action@v2 | ||
|
||
- name: printVersion | ||
run: echo "The version extracted from github.ref is ${{ steps.get_version.outputs.version }}" | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
|
@@ -83,19 +89,15 @@ jobs: | |
|
||
- name: Load secrets from 1Password | ||
id: onepw_secrets | ||
uses: 1password/[email protected] | ||
uses: ./.github/actions/extract-1password-secret | ||
with: | ||
export-env: true # Export loaded secrets as environment variables | ||
env: | ||
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }} # This is required to connect to the vault in our 1Password account. | ||
MAVEN_GPG_PRIVATE_KEY: "op://rbiv7rvkkrsdlpcrz3bmv7nmcu/yztcx47yzp4vizjyaq7ulvkgoi/Private Key" | ||
MAVEN_GPG_PASSPHRASE: "op://rbiv7rvkkrsdlpcrz3bmv7nmcu/yztcx47yzp4vizjyaq7ulvkgoi/password" | ||
VARIABLES_TO_EXTRACT: 'MAVEN_GPG_PASSPHRASE, MAVEN_GPG_PRIVATE_KEY, SONATYPE_TOKEN_USERNAME, SONATYPE_TOKEN_PASSWORD' | ||
ONE_PASSWORD_SECRET_REFERENCES: ${{ vars.ONE_PASSWORD_SECRET_REFERENCES }} | ||
|
||
- name: Build and Publish to Sonatype | ||
run: | | ||
# The gradle java verifying plugin does not work with java 17. | ||
# Don't verify since it has already been done when the PR was created. | ||
./gradlew publish -x verifyGoogleJavaFormat | ||
env: | ||
SONATYPE_USERNAME: ${{secrets.SONATYPE_USERNAME}} | ||
SONATYPE_PASSWORD: ${{secrets.SONATYPE_PASSWORD}} | ||
./gradlew publish --rerun-tasks -x verifyGoogleJavaFormat | ||
|
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 |
---|---|---|
|
@@ -56,16 +56,16 @@ jobs: | |
|
||
- name: Load secrets from 1Password to be used for sending notification | ||
id: onepw_secrets | ||
uses: 1password/[email protected] | ||
uses: ./.github/actions/extract-1password-secret | ||
with: | ||
export-env: true # Export loaded secrets as environment variables | ||
env: | ||
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }} | ||
CREDENTIALS: "op://rbiv7rvkkrsdlpcrz3bmv7nmcu/ifkeehu5gzi7wy5ub5qvwkaire/credential" | ||
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }} # This is required to connect to the vault in our 1Password account. | ||
VARIABLES_TO_EXTRACT: 'GITHUB_GENERIC_ACTION_CREDENTIALS' | ||
ONE_PASSWORD_SECRET_REFERENCES: ${{ vars.ONE_PASSWORD_SECRET_REFERENCES }} | ||
|
||
|
||
- name: Send a notification to mobility-feed-api | ||
uses: peter-evans/repository-dispatch@v2 | ||
with: | ||
token: ${{ env.CREDENTIALS }} | ||
token: ${{ env.GITHUB_GENERIC_ACTION_CREDENTIALS }} | ||
repository: MobilityData/mobility-feed-api | ||
event-type: gtfs-validator-update-stg |
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 |
---|---|---|
|
@@ -54,16 +54,15 @@ jobs: | |
|
||
- name: Load secrets from 1Password to be used for sending notification | ||
id: onepw_secrets | ||
uses: 1password/[email protected] | ||
uses: ./.github/actions/extract-1password-secret | ||
with: | ||
export-env: true # Export loaded secrets as environment variables | ||
env: | ||
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }} | ||
CREDENTIALS: "op://rbiv7rvkkrsdlpcrz3bmv7nmcu/ifkeehu5gzi7wy5ub5qvwkaire/credential" | ||
OP_SERVICE_ACCOUNT_TOKEN: ${{ secrets.OP_SERVICE_ACCOUNT_TOKEN }} # This is required to connect to the vault in our 1Password account. | ||
VARIABLES_TO_EXTRACT: 'GITHUB_GENERIC_ACTION_CREDENTIALS' | ||
ONE_PASSWORD_SECRET_REFERENCES: ${{ vars.ONE_PASSWORD_SECRET_REFERENCES }} | ||
|
||
- name: Send a notification to mobility-feed-api | ||
uses: peter-evans/repository-dispatch@v2 | ||
with: | ||
token: ${{ env.CREDENTIALS }} | ||
token: ${{ env.GITHUB_GENERIC_ACTION_CREDENTIALS }} | ||
repository: MobilityData/mobility-feed-api | ||
event-type: gtfs-validator-release |
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍