Bump ch.qos.logback:logback-classic from 1.2.3 to 1.3.12 #17
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
on: | |
pull_request_target: | |
types: [labeled] | |
jobs: | |
checkstyle_job: | |
runs-on: ubuntu-latest | |
name: Checkstyle job | |
if: contains(github.event.pull_request.labels.*.name, 'safe to test') | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
ref: "refs/pull/${{ github.event.number }}/merge" | |
- name: Run java checkstyle | |
# You may pin to the exact commit or the version. | |
# uses: nikitasavinov/checkstyle-action@d236d4d9a3563684368581f1127f7e4773013e9d | |
uses: tochi-y/checkstyle-action@master | |
with: | |
# GITHUB_TOKEN. | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
# Report level for reviewdog [info,warning,error] | |
level: info | |
# Reporter of reviewdog command [github-pr-check,github-pr-review] | |
reporter: github-pr-check | |
# Filtering for the reviewdog command [added,diff_context,file,nofilter]. Default is `added`. | |
filter_mode: added | |
# Exit code for reviewdog when errors are found [true,false] Default is `false`. | |
fail_on_error: false | |
# Checkstyle config file | |
checkstyle_config: personium-checkstyle.xml | |
# Working directory relative to the root directory. | |
workdir: src/ | |
# Tool name to use for reviewdog reporter | |
tool_name: reviewdog | |
# Properties file relative to the root directory. | |
properties_file: checkstyle_maven.properties |