Skip to content

Commit

Permalink
actions: JDK 21 and update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
joshtynjala committed Jun 26, 2024
1 parent b2e5db9 commit abbb7c3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
build:
strategy:
matrix:
java-version: ["8", "11", "17"]
java-version: ["8", "11", "17", "21"]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@v2
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: ${{ matrix.java-version }}
Expand All @@ -24,13 +24,13 @@ jobs:
- name: Build VSCode extension with Gradle
working-directory: vscode-extension
run: ./gradlew build
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
if: ${{ matrix.java-version == '8' }}
with:
name: groovy-language-server
path: build/libs/groovy-language-server-all.jar
if-no-files-found: error
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
if: ${{ matrix.java-version == '8' }}
with:
name: groovy-vscode-extension
Expand Down

0 comments on commit abbb7c3

Please sign in to comment.