This is an automated email from the ASF dual-hosted git repository. ppkarwasz pushed a commit to branch fix/new-gha-branch in repository https://gitbox.apache.org/repos/asf/logging-log4j-samples.git
commit aa921b702a86a4767695b669b64bbaa5bd17cc7b Author: Piotr P. Karwasz <[email protected]> AuthorDate: Sun Apr 19 15:26:39 2026 +0200 fix: use relative paths for local reusable workflows in integration-test Switches `gradle-test` and `graalvm-test` to `./.github/workflows/...` so they resolve against the caller's ref instead of always pulling from `main`. Also pins `apache/logging-parent/build-reusable.yaml` to the new `gha/v0` branch. --- .github/workflows/integration-test.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration-test.yaml b/.github/workflows/integration-test.yaml index 1b9a900..2bafdf6 100644 --- a/.github/workflows/integration-test.yaml +++ b/.github/workflows/integration-test.yaml @@ -52,7 +52,7 @@ permissions: read-all jobs: jre-test: - uses: apache/logging-parent/.github/workflows/build-reusable.yaml@main + uses: apache/logging-parent/.github/workflows/build-reusable.yaml@gha/v0 with: java-version: 21 maven-args: | @@ -63,14 +63,14 @@ jobs: test-report-suffix: '-it' gradle-test: - uses: apache/logging-log4j-samples/.github/workflows/gradle-reusable-test.yaml@main + uses: ./.github/workflows/gradle-reusable-test.yaml with: log4j-version: ${{ inputs.log4j-version }} log4j-repository-url: ${{ inputs.log4j-repository-url }} samples-ref: ${{ inputs.samples-ref }} graalvm-test: - uses: apache/logging-log4j-samples/.github/workflows/graalvm-reusable-test.yaml@main + uses: ./.github/workflows/graalvm-reusable-test.yaml with: log4j-version: ${{ inputs.log4j-version }} log4j-repository-url: ${{ inputs.log4j-repository-url }}
