gh-actions: bump actions/setup-java from 4.2.1 to 4.4.0 #128
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create DevBuild | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
create-prerelease: | |
name: Create Dev Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/[email protected] | |
- name: Set up JDK 17 | |
uses: actions/[email protected] | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
java-package: jdk # optional (jdk or jre) - defaults to jdk | |
cache: 'maven' | |
- name: Build with Maven | |
run: mvn clean install |