Skip to content

Commit 48e1c36

Browse files
authored
Merge pull request #1821 from larsewi/dollar
update-deps.yml: fixed failure when running workflow
2 parents 9646385 + 0179194 commit 48e1c36

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/update-deps.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ jobs:
4444
run: |
4545
echo "COMMIT_HASH_BEFORE=$(git log -1 --format=%H)">> $GITHUB_ENV
4646
- name: Run update script
47-
run: python3 /tmp/update-deps.py --debug --bump=${{ matrix.branch == 'master' && 'major' || 'minor' }} ${{ matrix.branch == 'master' && '--jdk21' }}
47+
# we use only master branch for ci build host policy so only check for jdk updates in master
48+
run: python3 /tmp/update-deps.py --debug --bump=${{ matrix.branch == 'master' && 'major' || 'minor' }} ${{ matrix.branch == 'master' && '--jdk21' || '' }}
4849
- name: Save commit hash after
4950
run: |
5051
echo "COMMIT_HASH_AFTER=$(git log -1 --format=%H)">> $GITHUB_ENV

0 commit comments

Comments
 (0)