Skip to content

Bump io.vertx:vertx-core from 4.5.10 to 4.5.11 (#20) #66

Bump io.vertx:vertx-core from 4.5.10 to 4.5.11 (#20)

Bump io.vertx:vertx-core from 4.5.10 to 4.5.11 (#20) #66

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build-java17:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: temurin
- name: Build with Maven
run: mvn -B clean install
build-java21:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: temurin
- name: Build with Maven
run: mvn -B clean install