Skip to content

Update all non-major GitHub Actions dependencies #1368

Update all non-major GitHub Actions dependencies

Update all non-major GitHub Actions dependencies #1368

Workflow file for this run

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@a5ac7e51b41094c92402da3b24376905380afc29 # v4
- name: Setup Java
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4
with:
distribution: temurin
java-version: 11
cache: gradle
- name: Login to Docker Hub
uses: docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446 # 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@65462800fd760344b1a7b4382951275a0abb4808 # v4
if: failure()
with:
name: test-results
path: build/test-results/
- name: Publish Test Report
uses: mikepenz/action-junit-report@ac30be7acb0a361e5492575ab42e47fcadec4928 # v4
if: always() # always run even if the previous step fails
with:
report_paths: '**/build/test-results/*/TEST-*.xml'