Update dependency org.openrewrite.maven:rewrite-maven-plugin to v6.2.3 - autoclosed #147
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Maven Build | |
on: | |
push: | |
branches: [ "main" ] | |
paths-ignore: | |
- '.gitignore' | |
- '.sdkmanrc' | |
- 'README.md' | |
- 'LICENSE' | |
- 'Taskfile.yml' | |
- 'renovate.json' | |
- 'k8s/**' | |
- 'kind/**' | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 21 | |
distribution: 'temurin' | |
cache: 'maven' | |
- name: Make Maven wrapper executable | |
run: chmod +x mvnw | |
- name: Build with Maven | |
run: ./mvnw -ntp verify |