Skip to content

Commit 76c44e7

Browse files
committed
another fix
1 parent c6243e7 commit 76c44e7

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/beam_Upgrade_GCP_BOM.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ jobs:
3838
steps:
3939
- name: Checkout code
4040
uses: actions/checkout@v7
41+
with:
42+
persist-credentials: false
4143
- name: Setup environment
4244
uses: ./.github/actions/setup-environment-action
4345
with:
@@ -49,7 +51,9 @@ jobs:
4951
run: python3 scripts/tools/bomupgrader.py --check
5052
- name: Run bomupgrader
5153
if: steps.check_bom.outputs.should_upgrade == 'true'
52-
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 }}
5357
- name: Install gh cli
5458
if: steps.check_bom.outputs.should_upgrade == 'true'
5559
uses: ./.github/actions/setup-gh-cli-linux

0 commit comments

Comments
 (0)