gh-actions: bump actions/checkout from 4.1.6 to 4.1.7 #118
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/checkout@v4.1.7 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4.2.1 | |
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 |