Replace deprecated YamlMapper configure methods to use its builder #1351
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 PRs | |
on: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: find . -type f -name "*.sh" -exec chmod a+x '{}' \; | |
- uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'liberica' | |
- name: Build | |
shell: bash | |
timeout-minutes: 75 | |
run: | | |
./mvnw -s .github/settings.xml -B -Pdocs clean install --no-transfer-progress -T 1C | |
- name: Install XML Utils | |
if: ${{ failure() }} | |
uses: ./.github/actions/install-xmlutils | |
- name: Test Errors Report | |
if: ${{ failure() }} | |
shell: bash | |
run: ./src/scripts/print-test-errors.sh | |
scan: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run Trivy vulnerability scanner in repo mode | |
uses: aquasecurity/trivy-action@master | |
with: | |
scan-type: 'fs' | |
ignore-unfixed: true | |
format: 'table' | |
severity: 'CRITICAL,HIGH' | |
- name: 'Scanned' | |
shell: bash | |
run: echo "::info ::Scanned" | |
done: | |
runs-on: ubuntu-latest | |
needs: [ scan, build ] | |
steps: | |
- name: 'Done' | |
shell: bash | |
run: echo "::info ::Done" |