We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1c8720d + 64d245c commit 2791dcfCopy full SHA for 2791dcf
.github/workflows/build.yml
@@ -13,17 +13,13 @@ jobs:
13
runs-on: ubuntu-latest
14
strategy:
15
matrix:
16
- base-image-tag: [18-bullseye, 18-bookworm, 20-bookworm, 22-bookworm]
+ base-image-tag: [20-bookworm, 22-bookworm]
17
steps:
18
- uses: actions/checkout@master
19
- name: Determine Java version
20
id: java_version
21
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
+ echo 'version=17' >> $GITHUB_OUTPUT
27
- name: Test
28
29
chmod +x runTests.sh && ./runTests.sh ${{ matrix.base-image-tag }} ${{ steps.java_version.outputs.version }}
0 commit comments