We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6243e7 commit 76c44e7Copy full SHA for 76c44e7
1 file changed
.github/workflows/beam_Upgrade_GCP_BOM.yml
@@ -38,6 +38,8 @@ jobs:
38
steps:
39
- name: Checkout code
40
uses: actions/checkout@v7
41
+ with:
42
+ persist-credentials: false
43
- name: Setup environment
44
uses: ./.github/actions/setup-environment-action
45
with:
@@ -49,7 +51,9 @@ jobs:
49
51
run: python3 scripts/tools/bomupgrader.py --check
50
52
- name: Run bomupgrader
53
if: steps.check_bom.outputs.should_upgrade == 'true'
- run: python3 scripts/tools/bomupgrader.py ${{ steps.check_bom.outputs.latest_version }}
54
+ run: python3 scripts/tools/bomupgrader.py ${STEPS_CHECK_BOM_OUTPUTS_LATEST_VERSION}
55
+ env:
56
+ STEPS_CHECK_BOM_OUTPUTS_LATEST_VERSION: ${{ steps.check_bom.outputs.latest_version }}
57
- name: Install gh cli
58
59
uses: ./.github/actions/setup-gh-cli-linux
0 commit comments