Skip to content

Bump actions/cache from 4.0.2 to 4.1.0 (#402) #698

Bump actions/cache from 4.0.2 to 4.1.0 (#402)

Bump actions/cache from 4.0.2 to 4.1.0 (#402) #698

Workflow file for this run

name: Build with JDK 21
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '21', '22' ]
architecture: [ 'x64' ]
name: Build with JDK ${{ matrix.java }} on ${{ matrix.architecture }}
steps:
- uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: 'oracle'
java-version: ${{ matrix.java }}
architecture: ${{ matrix.architecture }}
cache: 'maven'
- name: Build with Maven
run: mvn package