build(deps): bump ch.qos.logback:logback-classic from 1.5.10 to 1.5.1… #236
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: Main CI/CD pipeline | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build-main: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ | |
{ 'version': '11', 'opts': '' }, | |
{ 'version': '17', 'opts': '' }, | |
{ 'version': '21', 'opts': '' } | |
] | |
name: Build with Java ${{ matrix.java.version }} (OpenJDK) | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
name: Set up JDK ${{matrix.java.version}} | |
with: | |
distribution: temurin | |
java-version: ${{matrix.java.version}} | |
cache: maven | |
- name: Build with Maven | |
env: | |
MAVEN_OPTS: ${{ matrix.java.opts }} | |
run: ./mvnw -s .github/maven-ci-settings.xml -B clean verify | |
compatibility: | |
runs-on: ubuntu-latest | |
name: Compatibility Check | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
name: Set up JDK 11 | |
with: | |
distribution: temurin | |
java-version: 11 | |
cache: maven | |
- name: Compatibility Check | |
run: ./mvnw -s .github/maven-ci-settings.xml -B install revapi:check@check-compatibility -DskipTests -fae |