.github: update maven GitHub actions workflow

- Switch to Ubuntu 22.04 because `ubuntu-latest` is still 20.04
- Update actions to latest versions
- Specify Java 8 instead of 1.8
- Enable Maven caching
This commit is contained in:
Alan Orth 2022-10-06 20:36:08 +03:00
parent b396fba043
commit c2d7535d01
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 6 additions and 5 deletions

View File

@ -12,13 +12,14 @@ on:
jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
- uses: actions/checkout@v3
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: 1.8
java-version: 8
cache: 'maven'
- name: Build with Maven
run: mvn -B package --file pom.xml