Skip to content

Bump org.openrewrite:rewrite-templating from 1.38.4 to 1.39.0 #114

Bump org.openrewrite:rewrite-templating from 1.38.4 to 1.39.0

Bump org.openrewrite:rewrite-templating from 1.38.4 to 1.39.0 #114

Workflow file for this run

name: Maven Build
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: "maven-${{ github.ref }}"
cancel-in-progress: true
jobs:
build:
name: Build and verify
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up JDK
uses: actions/setup-java@v5
with:
java-version: '25'
distribution: 'temurin'
cache: 'maven'
- name: Build with Maven
run: mvn verify
- name: Apply OpenRewrite recipes
run: mvn -U org.openrewrite.maven:rewrite-maven-plugin:run -Drewrite.recipeArtifactCoordinates=org.openrewrite.recipe:rewrite-testing-frameworks:RELEASE -Drewrite.activeRecipes=org.openrewrite.java.testing.assertj.Assertj -Drewrite.exportDatatables=true
- name: Verify still works
run: mvn verify