Skip to content

Bump actions/cache from 4.2.3 to 4.2.4 (#493) #878

Bump actions/cache from 4.2.3 to 4.2.4 (#493)

Bump actions/cache from 4.2.3 to 4.2.4 (#493) #878

Workflow file for this run

name: Build with JDK 21
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '23' ]
architecture: [ 'x64' ]
name: Build with JDK ${{ matrix.java }} on ${{ matrix.architecture }}
steps:
- uses: actions/checkout@v5
- 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