From 6480f9328f5eb7a06196a6efeb36e5eb62ab0f66 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 2 May 2026 18:08:29 +0000 Subject: [PATCH 1/2] Bump the all group across 1 directory with 4 updates Bumps the all group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [graalvm/setup-graalvm](https://github.com/graalvm/setup-graalvm), [actions/setup-java](https://github.com/actions/setup-java) and [gradle/actions](https://github.com/gradle/actions). Updates `actions/checkout` from 4.2.2 to 6.0.2 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/11bd71901bbe5b1630ceea73d27597364c9af683...de0fac2e4500dabe0009e67214ff5f5447ce83dd) Updates `graalvm/setup-graalvm` from 1.3.5 to 1.5.2 - [Release notes](https://github.com/graalvm/setup-graalvm/releases) - [Commits](https://github.com/graalvm/setup-graalvm/compare/7f488cf82a3629ee755e4e97342c01d6bed318fa...60c26726de13f8b90771df4bc1641a52a3159994) Updates `actions/setup-java` from 4.7.1 to 5.2.0 - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](https://github.com/actions/setup-java/compare/c5195efecf7bdfc987ee8bae7a71cb8b11521c00...be666c2fcd27ec809703dec50e508c2fdc7f6654) Updates `gradle/actions` from 4.4.2 to 6.1.0 - [Release notes](https://github.com/gradle/actions/releases) - [Commits](https://github.com/gradle/actions/compare/017a9effdb900e5b5b2fddfb590a105619dca3c3...50e97c2cd7a37755bbfafc9c5b7cafaece252f6e) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: actions/setup-java dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: all - dependency-name: graalvm/setup-graalvm dependency-version: 1.3.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: gradle/actions dependency-version: 4.4.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all ... Signed-off-by: dependabot[bot] --- .github/workflows/graalvm-reusable-test.yaml | 4 ++-- .github/workflows/gradle-reusable-test.yaml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/graalvm-reusable-test.yaml b/.github/workflows/graalvm-reusable-test.yaml index a4c5fb7..19c51f6 100644 --- a/.github/workflows/graalvm-reusable-test.yaml +++ b/.github/workflows/graalvm-reusable-test.yaml @@ -50,13 +50,13 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # 6.0.2 with: repository: 'apache/logging-log4j-samples' ref: ${{ inputs.samples-ref }} - name: Setup GraalVM - uses: graalvm/setup-graalvm@7f488cf82a3629ee755e4e97342c01d6bed318fa # 1.3.5 + uses: graalvm/setup-graalvm@60c26726de13f8b90771df4bc1641a52a3159994 # 1.5.2 with: java-version: '21' diff --git a/.github/workflows/gradle-reusable-test.yaml b/.github/workflows/gradle-reusable-test.yaml index 179db10..86a047e 100644 --- a/.github/workflows/gradle-reusable-test.yaml +++ b/.github/workflows/gradle-reusable-test.yaml @@ -45,19 +45,19 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # 6.0.2 with: repository: 'apache/logging-log4j-samples' ref: ${{ inputs.samples-ref }} - name: Setup Java - uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # 4.7.1 + uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # 5.2.0 with: distribution: 'temurin' java-version: 17 - name: Setup Gradle - uses: gradle/actions/setup-gradle@017a9effdb900e5b5b2fddfb590a105619dca3c3 # 4.4.2 + uses: gradle/actions/setup-gradle@50e97c2cd7a37755bbfafc9c5b7cafaece252f6e # 6.1.0 with: develocity-access-key: ${{ secrets.DEVELOCITY_ACCESS_KEY }} develocity-injection-enabled: true From 218d0aed5e758f10ea5ab9f2778517c7af21be10 Mon Sep 17 00:00:00 2001 From: "Piotr P. Karwasz" Date: Sat, 2 May 2026 20:17:10 +0200 Subject: [PATCH 2/2] fix: run `integration-test` from same branch --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index fcf47d7..e0a4260 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -36,4 +36,4 @@ permissions: read-all jobs: integration-test: - uses: apache/logging-log4j-samples/.github/workflows/integration-test.yaml@main + uses: ./.github/workflows/integration-test.yaml