Skip to content

Commit 714b2cc

Browse files
Greyvendclaude
andcommitted
Fix CI: replace Java 13 with 17, unique artifact names
Temurin does not distribute Java 13 (non-LTS, EOL). Replace with Java 17 (current LTS). Also make upload-artifact names unique per matrix job as required by actions/upload-artifact@v4. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent aece795 commit 714b2cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build_and_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
matrix:
2121
# test against latest update of each major Java version, as well as specific updates of LTS versions:
22-
java: [8, 11.0.x, 13 ]
22+
java: [8, 11, 17 ]
2323

2424
steps:
2525
- name: Checkout the code
@@ -56,7 +56,7 @@ jobs:
5656
- name: Upload build artifacts
5757
uses: actions/upload-artifact@v4
5858
with:
59-
name: Package
59+
name: Package-java-${{ matrix.java }}
6060
path: staging
6161

6262
- name: Notify slack fail

0 commit comments

Comments
 (0)