Skip to content

Commit c411025

Browse files
fix: update release workflow to use Java 11
The Shadow plugin version 8.3.9 has dependencies compiled with Java 11 (class file version 55.0), but the release workflow was using Java 8 which only supports up to class file version 52.0. Fixes #235 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 0e387de commit c411025

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ jobs:
4747
token: ${{ steps.app-token.outputs.token }}
4848
persist-credentials: true # push the tag later
4949

50-
- name: Set up Java 8
50+
- name: Set up Java 11
5151
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4
5252
with:
53-
java-version: '8'
53+
java-version: '11'
5454
distribution: 'temurin'
5555

5656
- name: Bump Version

0 commit comments

Comments
 (0)