Skip to content

Bump net.revelc.code:impsort-maven-plugin from 1.12.0 to 1.13.0 #381

Bump net.revelc.code:impsort-maven-plugin from 1.12.0 to 1.13.0

Bump net.revelc.code:impsort-maven-plugin from 1.12.0 to 1.13.0 #381

Workflow file for this run

name: Build
on:
push:
branches:
- "main"
paths-ignore:
- '.gitignore'
- 'LICENSE'
- '*.md'
- '*.adoc'
- '*.txt'
pull_request:
paths-ignore:
- '.gitignore'
- 'LICENSE'
- '*.md'
- '*.adoc'
- '*.txt'
jobs:
# Checks that all commits contain sign-offs
check-signed-commits:
name: Check signed commits
runs-on: ubuntu-latest
steps:
- uses: debezium/dbz/.github/actions/check-dco@main
build:
needs: [ check-signed-commits ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
- name: Get Date
id: get-date
run: |
echo "name=date::$(/bin/date -u "+%Y-%m")" >> $GITHUB_OUTPUT
shell: bash
- name: Cache Maven Repository
id: cache-maven
uses: actions/cache@v4
with:
path: ~/.m2/repository
# refresh cache every month to avoid unlimited growth
key: maven-repo-pr-${{ runner.os }}-${{ steps.get-date.outputs.date }}
- name: Build with Maven
run: mvn -B clean formatter:validate install