Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/workflows/build-java-binder.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,7 @@ jobs:
statuses: write
checks: write
id-token: write
env:
VAULT_ADDR: https://vault.maas-vault-prod.solace.cloud:8200

steps:
- name: Checkout repo
uses: actions/checkout@v4
Expand All @@ -60,7 +59,7 @@ jobs:
uses: hashicorp/vault-action@v3
continue-on-error: true
with:
url: "https://vault.maas-vault-prod.solace.cloud:8200"
url: "${{ secrets.VAULT_ADDR }}"
role: "cicd-workflows-secret-read-role"
method: jwt
path: jwt-github
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,5 @@ jobs:
uses: ./.github/workflows/build-java-binder.yaml
with:
unit_integration_test_reports: "**/target/failsafe-reports/**/TEST*.xml"
secrets: inherit

5 changes: 2 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,7 @@ jobs:
contents: write
packages: write
id-token: write
env:
VAULT_ADDR: https://vault.maas-vault-prod.solace.cloud:8200

steps:
- uses: actions/checkout@v4
with:
Expand All @@ -57,7 +56,7 @@ jobs:
uses: hashicorp/vault-action@v3
continue-on-error: true
with:
url: "${{ env.VAULT_ADDR }}"
url: "${{ secrets.VAULT_ADDR }}"
role: "cicd-workflows-secret-read-role"
method: jwt
path: jwt-github
Expand Down
Loading