We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9646385 + 0179194 commit 48e1c36Copy full SHA for 48e1c36
1 file changed
.github/workflows/update-deps.yml
@@ -44,7 +44,8 @@ jobs:
44
run: |
45
echo "COMMIT_HASH_BEFORE=$(git log -1 --format=%H)">> $GITHUB_ENV
46
- name: Run update script
47
- run: python3 /tmp/update-deps.py --debug --bump=${{ matrix.branch == 'master' && 'major' || 'minor' }} ${{ matrix.branch == 'master' && '--jdk21' }}
+ # 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' || '' }}
49
- name: Save commit hash after
50
51
echo "COMMIT_HASH_AFTER=$(git log -1 --format=%H)">> $GITHUB_ENV
0 commit comments