Bump snyk/actions from 28606799782bc8e809f4076e9f8293bc4212d05e to 9adf32b1121593767fc3c057af55b55db032dc04 #1
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: Keycloak Documentation | |
| on: | |
| push: | |
| branches-ignore: | |
| - main | |
| - dependabot/** | |
| - quarkus-next | |
| pull_request: | |
| workflow_dispatch: | |
| env: | |
| MAVEN_ARGS: "-B -nsu -Daether.connector.http.connectionMaxTtl=25" | |
| concurrency: | |
| # Only cancel jobs for PR updates | |
| group: documentation-${{ github.ref }} | |
| cancel-in-progress: true | |
| defaults: | |
| run: | |
| shell: bash | |
| permissions: | |
| contents: read | |
| jobs: | |
| conditional: | |
| name: Check conditional workflows and jobs | |
| runs-on: ubuntu-latest | |
| outputs: | |
| documentation: ${{ steps.conditional.outputs.documentation }} | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - id: conditional | |
| uses: ./.github/actions/conditional | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| build: | |
| name: Build | |
| if: ${{ needs.conditional.outputs.documentation == 'true' }} | |
| runs-on: ubuntu-latest | |
| needs: conditional | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - id: setup-java | |
| name: Setup Java | |
| uses: ./.github/actions/java-setup | |
| - id: maven-cache | |
| name: Maven cache | |
| uses: ./.github/actions/maven-cache | |
| - id: build-test-documentation | |
| name: Build and verify Keycloak documentation | |
| shell: bash | |
| run: | | |
| ./mvnw install -Dtest=!ExternalLinksTest -am -pl docs/documentation/tests,docs/documentation/dist -e -Pdocumentation | |
| - id: upload-keycloak-documentation | |
| name: Upload Keycloak documentation | |
| uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 | |
| with: | |
| name: keycloak-documentation | |
| path: docs/documentation/dist/target/*.zip | |
| retention-days: 1 | |
| external-links: | |
| name: External links check | |
| if: ${{ needs.conditional.outputs.documentation == 'true' }} | |
| runs-on: ubuntu-latest | |
| needs: conditional | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - id: setup-java | |
| name: Setup Java | |
| uses: ./.github/actions/java-setup | |
| - id: maven-cache | |
| name: Maven cache | |
| uses: ./.github/actions/maven-cache | |
| - id: build-test-documentation | |
| name: Build and verify Keycloak documentation | |
| shell: bash | |
| run: | | |
| ./mvnw install -Dtest=ExternalLinksTest -am -pl docs/documentation/tests -e -Pdocumentation | |
| check: | |
| name: Status Check - Keycloak Documentation | |
| if: always() | |
| needs: | |
| - conditional | |
| - build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - uses: ./.github/actions/status-check | |
| with: | |
| jobs: ${{ toJSON(needs) }} |