Skip to content

Commit 3a05433

Browse files
committed
rm node-18
1 parent 3d1714d commit 3a05433

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

.github/workflows/release.yml

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

0 commit comments

Comments
 (0)