Bump net.bytebuddy:byte-buddy from 1.15.5 to 1.15.7 #585
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: CI - PR | |
on: | |
- pull_request | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/[email protected] | |
with: | |
java-version: 21 | |
distribution: adopt | |
- name: Unit Tests | |
uses: eskatos/[email protected] | |
with: | |
arguments: test | |
- name: "Upload Test Logs Artifact" | |
uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: unit-test-logs | |
path: | | |
build/reports/tests/ | |
ecs-logging-access/build/reports/tests/ | |
ecs-logging-app/build/reports/tests/ | |
ecs-logging-async/build/reports/tests/ | |
ecs-logging-audit/build/reports/tests/ | |
ecs-logging-base/build/reports/tests/ | |
gzip-request-filter-starter/build/reports/tests/ | |
- name: Codacy Publish | |
uses: codacy/codacy-coverage-reporter-action@master | |
if: github.actor != 'dependabot[bot]' | |
with: | |
project-token: ${{ secrets.CODACY_TOKEN }} | |
javadoc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/[email protected] | |
with: | |
java-version: 21 | |
distribution: adopt | |
- name: Generate javadoc | |
uses: eskatos/[email protected] | |
with: | |
arguments: globalJavadoc |