K1J-405: Update to java 21, tomcat 10, gradle 8.10.2, Spring Framework 6.1, remove gradle-intyg-plugin and removed refdata as dependency. #1053
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: Checkstyle | |
on: pull_request | |
jobs: | |
checkstyle: | |
runs-on: ubuntu-latest | |
name: Checkstyle job | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v2 | |
- name: Checkout checkstyle xml | |
uses: actions/checkout@v3 | |
with: | |
repository: sklintyg/gradle-intyg-plugin | |
path: gradle-intyg-plugin | |
ref: feature/java11 | |
- name: Run check style | |
uses: nikitasavinov/checkstyle-action@master | |
with: | |
checkstyle_config: gradle-intyg-plugin/src/main/resources/checkstyle/checkstyle_config_java11.xml | |
checkstyle_version: 10.3.2 | |
level: error |