Skip to content

Commit

Permalink
Replace buster with bookworm (#49)
Browse files Browse the repository at this point in the history
* Replace buster with bookwarm

* fix typo and order

* This is not relevant for bookworm

---------

Co-authored-by: Oliver Feldmann <[email protected]>
  • Loading branch information
srinikitha09 and o-liver authored Nov 13, 2023
1 parent 33b41a6 commit 25edb95
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Determine Java version
id: java_version
run: |
if [[ "${{ matrix.base-image-tag }}" == *"-buster" ]] || [[ "${{ matrix.base-image-tag }}" == *"-bullseye" ]]; then
if [[ "${{ matrix.base-image-tag }}" == *"-bullseye" ]]; then
echo 'version=11' >> $GITHUB_OUTPUT
else
echo 'version=17' >> $GITHUB_OUTPUT
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Determine Java version
id: java_version
run: |
if [[ "${{ matrix.base-image-tag }}" == *"-buster" ]] || [[ "${{ matrix.base-image-tag }}" == *"-bullseye" ]]; then
if [[ "${{ matrix.base-image-tag }}" == *"-bullseye" ]]; then
echo 'version=11' >> $GITHUB_OUTPUT
else
echo 'version=17' >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 25edb95

Please sign in to comment.