This is an automated email from the ASF dual-hosted git repository.

ppkarwasz pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/logging-log4j-samples.git


The following commit(s) were added to refs/heads/main by this push:
     new 7bac50a  fix: use relative paths for local reusable workflows in 
integration-test (#394)
7bac50a is described below

commit 7bac50a3bd184b758424deb3d154d02b8d4036e4
Author: Piotr P. Karwasz <[email protected]>
AuthorDate: Sun Apr 19 16:41:31 2026 +0200

    fix: use relative paths for local reusable workflows in integration-test 
(#394)
    
    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 }}

Reply via email to