Bump ch.qos.logback:logback-classic in the patches group #131
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 | |
# Run workflow for any push to a branch | |
on: | |
push: | |
branches: | |
- '**' | |
tags: | |
- '**' | |
workflow_dispatch: | |
jobs: | |
maven-build: | |
uses: telicent-oss/shared-workflows/.github/workflows/maven.yml@main | |
with: | |
# No Docker based tests in this repository currently | |
USES_DOCKERHUB_IMAGES: false | |
# Want to publish SNAPSHOTs from main | |
PUBLISH_SNAPSHOTS: true | |
MAIN_BRANCH: main | |
JAVA_VERSION: 17 | |
# If running in debug mode, use appropriate logging | |
MAVEN_DEBUG_ARGS: -Dlogback.configurationFile=logback-debug.xml | |
secrets: inherit |