fix(deps): update ch.qos.logback to v1.5.6 #127
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
# This workflow will build a Java project with Gradle | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle | |
name: Test | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
java-version: | |
- 11 | |
- 17 | |
runs-on: ubuntu-latest | |
name: 'Test (JDK ${{ matrix.java-version }})' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: 'Set up JDK ${{ matrix.java-version }}' | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java-version }} | |
distribution: liberica | |
- name: 'Run tests' | |
uses: burrunan/gradle-cache-action@v1 | |
with: | |
job-id: jdk${{ matrix.java-version }} | |
arguments: --scan --no-parallel --no-daemon build |