Skip to content

Bump org.apache.maven.plugins:maven-deploy-plugin from 3.1.2 to 3.1.3 #187

Bump org.apache.maven.plugins:maven-deploy-plugin from 3.1.2 to 3.1.3

Bump org.apache.maven.plugins:maven-deploy-plugin from 3.1.2 to 3.1.3 #187

Workflow file for this run

---
name: CI
on: [ push ]
jobs:
build-java:
runs-on: ubuntu-22.04
strategy:
matrix:
javaVersion: [ "11", "17", "21" ]
javaDistribution:
- corretto
- liberica
- microsoft
- temurin
- zulu
name: Java ${{ matrix.javaVersion }}-${{ matrix.javaDistribution }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: ${{ matrix.javaDistribution }}
java-version: ${{ matrix.javaVersion }}
cache: 'maven'
- run: mvn test --no-transfer-progress