We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fed501 commit 8a335acCopy full SHA for 8a335ac
1 file changed
.github/workflows/java.yml
@@ -13,11 +13,14 @@ jobs:
13
- name: Checkout code
14
uses: actions/checkout@v4
15
16
- - name: Install ANTLR4 and Maven
17
- run: |
18
- sudo apt-get update
19
- sudo apt-get install -y maven
20
- make dev
+ - name: Set up Java 21
+ uses: actions/setup-java@v4
+ with:
+ distribution: 'temurin'
+ java-version: '21'
21
+
22
+ - name: Install ANTLR4
23
+ run: make dev
24
25
- name: Import GPG key
26
uses: crazy-max/ghaction-import-gpg@v6
0 commit comments