Skip to content

Bump io.fabric8:docker-maven-plugin from 0.42.0 to 0.44.0 #697

Bump io.fabric8:docker-maven-plugin from 0.42.0 to 0.44.0

Bump io.fabric8:docker-maven-plugin from 0.42.0 to 0.44.0 #697

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [
{"version": 11, "extra": "-Pnative -Dquarkus.native.container-build=true"},
{"version": 17, "extra": "-pl !chapter-2/thorntail-hello"}
]
name: Build with jdk ${{matrix.java.version}}
steps:
- uses: actions/checkout@v4
name: checkout
- uses: actions/setup-java@v3
name: set up jdk ${{matrix.java.version}}
with:
distribution: temurin
java-version: ${{matrix.java.version}}
cache: maven
- name: Build
run: mvn -B clean verify ${{matrix.java.extra}}