fix(deps): bump ch.qos.logback:logback-classic from 1.2.11 to 1.5.15 #409
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: CI | |
on: | |
pull_request: | |
branches: [ main ] | |
push: | |
branches: [ main ] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
java-version: [8, 11, 17] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: zulu | |
java-version: '${{ matrix.java-version }}' | |
- name: Clean build directory | |
run: ./gradlew clean | |
- name: Build and test | |
run: ./gradlew build --info --console plain --refresh-dependencies | |
lint: | |
name: Lint | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # needed for super-linter | |
- name: Lint codebase | |
uses: github/super-linter@v5 | |
env: | |
VALIDATE_ALL_CODEBASE: false | |
DEFAULT_BRANCH: main | |
IGNORE_GITIGNORED_FILES: true | |
FILTER_REGEX_INCLUDE: .*src/.*, .*test/.* | |
FILTER_REGEX_EXCLUDE: .*package-info.java | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |