Skip to content

Update actions to newer versions to avoid node deprecation warnings #15

Update actions to newer versions to avoid node deprecation warnings

Update actions to newer versions to avoid node deprecation warnings #15

Workflow file for this run

name: Java CI with Maven
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'adopt'
- name: Build with Maven
run: mvn clean install -Dgpg.skip -Dmaven.javadoc.skip=true