Skip to content

Update all patch dependencies to v3.26.1 #1320

Update all patch dependencies to v3.26.1

Update all patch dependencies to v3.26.1 #1320

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@b4ffde65f46336ab88eb53be808477a3936bae11 # 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@e92390c5fb421da1463c202d546fed0ec5c39f20 # 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@1746f4ab65b179e0ea60a494b83293b640dd5bba # v4
if: failure()
with:
name: test-results
path: build/test-results/
- name: Publish Test Report
uses: mikepenz/action-junit-report@9379f0ccddcab154835d4e2487555ee79614fe95 # v4
if: always() # always run even if the previous step fails
with:
report_paths: '**/build/test-results/*/TEST-*.xml'