Bump mikepenz/action-junit-report from 3.8.0 to 4.0.0 #445
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: Run system tests | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
pull_request: | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
checks: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 # v2.5.1 | |
with: | |
disable-sudo: true | |
egress-policy: block | |
allowed-endpoints: > | |
api.adoptopenjdk.net:443 | |
api.github.com:443 | |
auth.docker.io:443 | |
download-installer.cdn.mozilla.net:443 | |
download.mozilla.org:443 | |
downloads.gradle-dn.com:443 | |
downloads.gradle.org:443 | |
github.com:443 | |
github-cloud.githubusercontent.com:443 | |
jcenter.bintray.com:443 | |
objects.githubusercontent.com:443 | |
ocsp.digicert.com:80 | |
plugins.gradle.org:443 | |
plugins-artifacts.gradle.org:443 | |
production.cloudflare.docker.com:443 | |
r3.o.lencr.org:80 | |
raw.githubusercontent.com:443 | |
registry-1.docker.io:443 | |
repo.maven.apache.org:443 | |
services.gradle.org:443 | |
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 | |
with: | |
lfs: true | |
- run: docker-compose pull --quiet && docker-compose up -d | |
working-directory: tests/src/test/resources/ | |
- uses: actions/setup-java@cd89f46ac9d01407894225f350157564c9c7cee2 # v3.12.0 | |
with: | |
distribution: 'adopt' | |
java-version: '17' | |
cache: 'gradle' | |
- uses: browser-actions/setup-firefox@f87e4ecedea37498da7a121eddc97dac1d93b26f # v1.1.1 | |
with: | |
firefox-version: latest | |
- uses: gradle/wrapper-validation-action@56b90f209b02bf6d1deae490e9ef18b21a389cd4 # v1.1.0 | |
- run: ./gradlew --no-daemon check | |
working-directory: tests/ | |
- uses: mikepenz/action-junit-report@75b84e78b3f0aaea7ed7cf8d1d100d7f97f963ec # v4.0.0 | |
if: always() # always run even if the previous step fails | |
with: | |
report_paths: 'tests/build/test-results/test/TEST-*.xml' |