Skip to content

Commit 6eba147

Browse files
authored
Merge branch 'master' into node24
2 parents c4788c9 + 2791dcf commit 6eba147

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,13 @@ jobs:
1313
runs-on: ubuntu-latest
1414
strategy:
1515
matrix:
16-
base-image-tag: [18-bullseye, 18-bookworm, 20-bookworm, 22-bookworm, 24-bookworm]
16+
base-image-tag: [20-bookworm, 22-bookworm, 24-bookworm]
1717
steps:
1818
- uses: actions/checkout@master
1919
- name: Determine Java version
2020
id: java_version
2121
run: |
22-
if [[ "${{ matrix.base-image-tag }}" == *"-bullseye" ]]; then
23-
echo 'version=11' >> $GITHUB_OUTPUT
24-
else
25-
echo 'version=17' >> $GITHUB_OUTPUT
26-
fi
22+
echo 'version=17' >> $GITHUB_OUTPUT
2723
- name: Test
2824
run: |
2925
chmod +x runTests.sh && ./runTests.sh ${{ matrix.base-image-tag }} ${{ steps.java_version.outputs.version }}

0 commit comments

Comments
 (0)