Skip to content

chore(deps): update dependency org.apache.maven.plugins:maven-install-plugin to v3.1.2 #484

chore(deps): update dependency org.apache.maven.plugins:maven-install-plugin to v3.1.2

chore(deps): update dependency org.apache.maven.plugins:maven-install-plugin to v3.1.2 #484

Workflow file for this run

---
name: Pull Request Build
on: pull_request
env:
# renovate: datasource=java-version depName=java-jdk
JAVA_VERSION: '22.0.1+8'
# renovate: datasource=maven depName=org.apache.maven:maven
MAVEN_VERSION: '3.9.6'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
- name: Set up Maven
uses: stCarolas/setup-maven@07fbbe97d97ef44336b7382563d66743297e442f # v4.5
with:
maven-version: ${{ env.MAVEN_VERSION }}
- name: Set up Java
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4
with:
java-version: ${{ env.JAVA_VERSION }}
distribution: 'temurin'
cache: 'maven'
- name: Build with Maven
run: mvn --batch-mode --update-snapshots verify