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 7f9e5a1 Bump the all group across 1 directory with 4 updates (#369)
7f9e5a1 is described below
commit 7f9e5a1e7808bd18e747da6d2fe3de560763e2e4
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Sat May 2 20:18:53 2026 +0200
Bump the all group across 1 directory with 4 updates (#369)
* 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] <[email protected]>
* fix: run `integration-test` from same branch
---------
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot]
<49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Piotr P. Karwasz <[email protected]>
---
.github/workflows/build.yaml | 2 +-
.github/workflows/graalvm-reusable-test.yaml | 4 ++--
.github/workflows/gradle-reusable-test.yaml | 6 +++---
3 files changed, 6 insertions(+), 6 deletions(-)
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
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