Update dependency net.bytebuddy:byte-buddy to v1.18.11 #2887
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
| # This file was generated using Kotlin DSL (.github/workflows/docs-pr.main.kts). | |
| # If you want to modify the workflow, please change the Kotlin file and regenerate this YAML file. | |
| # Generated with https://github.com/typesafegithub/github-workflows-kt | |
| name: 'Verify Docs' | |
| on: | |
| push: | |
| branches-ignore: | |
| - 'master' | |
| - 'gh-pages' | |
| pull_request: {} | |
| merge_group: {} | |
| concurrency: | |
| group: '${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}' | |
| cancel-in-progress: true | |
| jobs: | |
| check_yaml_consistency: | |
| name: 'Check YAML consistency' | |
| runs-on: 'ubuntu-latest' | |
| steps: | |
| - id: 'step-0' | |
| name: 'Check out' | |
| uses: 'actions/checkout@v7' | |
| - id: 'step-1' | |
| name: 'Install pinned Kotlin (work-around for KT-86352)' | |
| uses: './.github/actions/install-pinned-kotlin' | |
| - id: 'step-2' | |
| name: 'Execute script' | |
| run: 'rm ''.github/workflows/docs-pr.yaml'' && ''.github/workflows/docs-pr.main.kts''' | |
| - id: 'step-3' | |
| name: 'Consistency check' | |
| run: 'git diff --exit-code ''.github/workflows/docs-pr.yaml''' | |
| docs-and-javadoc: | |
| name: 'Docs and JavaDoc' | |
| runs-on: 'ubuntu-latest' | |
| needs: | |
| - 'check_yaml_consistency' | |
| steps: | |
| - id: 'step-0' | |
| name: 'Checkout Repository' | |
| uses: 'actions/checkout@v7' | |
| with: | |
| fetch-depth: '1' | |
| - id: 'step-1' | |
| name: 'Set up JDKs' | |
| uses: './.github/actions/setup-build-env' | |
| with: | |
| additional-java-version: '25' | |
| - id: 'step-2' | |
| name: 'Install GraphViz' | |
| run: 'sudo apt update && sudo apt install --yes graphviz' | |
| - id: 'step-3' | |
| name: 'Build Docs' | |
| run: './gradlew --stacktrace asciidoctor asciidoctorMarkdown javadoc "-Dvariant=5.0" "-DjavaVersion=25"' | |
| - id: 'step-4' | |
| name: 'Archive and upload docs' | |
| uses: 'actions/upload-artifact@v7' | |
| with: | |
| name: 'docs' | |
| path: |- | |
| build/docs/** | |
| build/javadoc/** |