diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index fcf47d7..997d0ed 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -37,3 +37,5 @@ jobs: integration-test: uses: apache/logging-log4j-samples/.github/workflows/integration-test.yaml@main + secrets: + DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} diff --git a/.github/workflows/gradle-reusable-test.yaml b/.github/workflows/gradle-reusable-test.yaml index 355f3a4..57d590c 100644 --- a/.github/workflows/gradle-reusable-test.yaml +++ b/.github/workflows/gradle-reusable-test.yaml @@ -33,6 +33,10 @@ on: description: The branch, tag or SHA of `logging-log4j-samples` to checkout type: string default: ${{ github.ref }} + secrets: + DEVELOCITY_ACCESS_KEY: + description: The access key to the Develocity server + required: false permissions: read-all diff --git a/.github/workflows/integration-test.yaml b/.github/workflows/integration-test.yaml index 1b9a900..b52d555 100644 --- a/.github/workflows/integration-test.yaml +++ b/.github/workflows/integration-test.yaml @@ -33,6 +33,10 @@ on: description: The branch, tag or SHA of `logging-log4j-samples` to checkout type: string default: ${{ github.ref }} + secrets: + DEVELOCITY_ACCESS_KEY: + description: The access key to the Develocity server + required: false workflow_dispatch: inputs: log4j-version: @@ -68,6 +72,8 @@ jobs: log4j-version: ${{ inputs.log4j-version }} log4j-repository-url: ${{ inputs.log4j-repository-url }} samples-ref: ${{ inputs.samples-ref }} + secrets: + DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} graalvm-test: uses: apache/logging-log4j-samples/.github/workflows/graalvm-reusable-test.yaml@main