fix(deps): update dependency io.camunda:spring-zeebe-starter to v8.5.14 #520
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: Build project with Maven | |
on: | |
pull_request: | |
schedule: | |
- cron: '2 2 * * 1' # run nightly master builds every monday | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Java setup | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
- name: Cache | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Run Maven | |
run: mvn -B clean verify com.mycila:license-maven-plugin:check -Dfmt.skip -Denforcer.skip |