Skip to content

Update ubi8/openjdk-21-runtime:latest image digest (#675) #2044

Update ubi8/openjdk-21-runtime:latest image digest (#675)

Update ubi8/openjdk-21-runtime:latest image digest (#675) #2044

Workflow file for this run

name: Build & Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Cache Maven dependencies
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'adopt'
java-version: 21
- name: Build with Maven
run: ./mvnw clean package --no-transfer-progress