Update eclipse-temurin to c4e6542e774de504da9b4729ff8d761287c965c1d78… #1871
Workflow file for this run
This file contains hidden or 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 Check | |
on: [ push ] | |
concurrency: | |
group: check-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Setup Java | |
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4 | |
with: | |
distribution: temurin | |
java-version: 11 | |
cache: gradle | |
- name: Login to Docker Hub | |
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_TOKEN }} | |
- name: Setup GraalVM | |
run: ./gradlew installNativeImageTooling | |
- name: Check | |
run: ./gradlew check --stacktrace | |
- name: Upload Test Results | |
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4 | |
if: failure() | |
with: | |
name: test-results | |
path: build/test-results/ | |
- name: Publish Test Report | |
uses: mikepenz/action-junit-report@3585e9575db828022551b4231f165eb59a0e74e3 # v5 | |
if: always() # always run even if the previous step fails | |
with: | |
report_paths: '**/build/test-results/*/TEST-*.xml' | |