deps(prod): update dependency ch.qos.logback:logback-classic to v1.5.8 #2471
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
# For most projects, this workflow file will not need changing; you simply need | |
# to commit it to your repository. | |
# | |
# ******** NOTE ******** | |
# If you need access to the GitHub Maven package registry from other repositories, | |
# create a personal access token with the following scopes: | |
# - read:packages | |
# and name it "READ_PACKAGES". | |
# After this step, overwrite the default GITHUB_TOKEN environment variable with the created PAT | |
# in the gradle build and test steps. | |
name: CI | |
# Events that trigger this workflow | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 📥 | |
uses: actions/[email protected] | |
- name: Set up JDK 17 💿 | |
uses: actions/[email protected] | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
java-package: jdk | |
cache: 'gradle' | |
- name: Build packages 🛠️ | |
run: chmod +x gradlew && ./gradlew build | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 📥 | |
uses: actions/[email protected] | |
- name: Set up JDK 17 💿 | |
uses: actions/[email protected] | |
with: | |
distribution: 'zulu' | |
java-version: '17' | |
java-package: jdk | |
cache: 'gradle' | |
- name: Test packages 🛃 | |
run: chmod +x gradlew && ./gradlew test | |
- name: Upload Test Report 📠 | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
uses: scacap/[email protected] | |
with: | |
report_paths: '**/build/test-results/test/TEST-*.xml' | |
github_token: ${{ secrets.GITHUB_TOKEN }} |