Update non-major netty dependencies to v4.2.9.Final #2037
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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6 | |
| - name: Setup Java | |
| uses: actions/setup-java@f2beeb24e141e01a676f977032f5a29d81c9e27e # v5 | |
| with: | |
| distribution: temurin | |
| java-version: | | |
| 11 | |
| 21 | |
| cache: gradle | |
| - name: Setup GraalVM | |
| run: ./gradlew installNativeImageTooling | |
| - name: Check | |
| env: | |
| ORG_GRADLE_PROJECT_dockerHubUsername: ${{ secrets.DOCKER_USERNAME }} | |
| ORG_GRADLE_PROJECT_dockerHubPassword: ${{ secrets.DOCKER_TOKEN }} | |
| run: ./gradlew check --stacktrace | |
| - name: Upload Test Results | |
| uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6 | |
| if: failure() | |
| with: | |
| name: test-results | |
| path: build/test-results/ | |
| - name: Publish Test Report | |
| uses: mikepenz/action-junit-report@e08919a3b1fb83a78393dfb775a9c37f17d8eea6 # v6 | |
| if: always() # always run even if the previous step fails | |
| with: | |
| report_paths: '**/build/test-results/*/TEST-*.xml' |