Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 26d4fbd

Browse files
committedFeb 18, 2025··
Merge remote-tracking branch 'apache/2.x' into feature/2.x/separate-reproducibility-check
2 parents 90dc464 + 55b799b commit 26d4fbd

File tree

953 files changed

+13688
-8255
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

953 files changed

+13688
-8255
lines changed
 

‎.github/dependabot.yaml

+1-5
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ updates:
4545

4646
- package-ecosystem: maven
4747
directories:
48-
- "/"
4948
- "/log4j-1.2-api"
5049
- "/log4j-api-test"
5150
- "/log4j-api"
@@ -59,6 +58,7 @@ updates:
5958
- "/log4j-docker"
6059
- "/log4j-fuzz-test"
6160
- "/log4j-iostreams"
61+
- "/log4j-jakarta-jms"
6262
- "/log4j-jakarta-smtp"
6363
- "/log4j-jakarta-web"
6464
- "/log4j-jcl"
@@ -163,7 +163,6 @@ updates:
163163
- package-ecosystem: maven
164164
directories:
165165
- "/log4j-mongodb4"
166-
- "/log4j-slf4j-impl"
167166
open-pull-requests-limit: 10
168167
schedule:
169168
interval: "daily"
@@ -174,9 +173,6 @@ updates:
174173
# MongoDB 4.x should only upgrade to 4.x
175174
- dependency-name: "org.mongodb:*"
176175
versions: [ "[5,)" ]
177-
# SLF4J 1.7.x should only upgrade to 1.7.x and
178-
- dependency-name: "org.slf4j:slf4j-api"
179-
versions: [ "[1,)" ]
180176

181177
- package-ecosystem: github-actions
182178
directory: "/"

‎.github/workflows/build.yaml

+6-8
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ jobs:
3030

3131
build:
3232
if: github.actor != 'dependabot[bot]'
33-
uses: apache/logging-parent/.github/workflows/build-reusable.yaml@feature/reproducibility-check
33+
uses: apache/logging-parent/.github/workflows/build-reusable.yaml@rel/12.0.0
3434
secrets:
35-
DV_ACCESS_TOKEN: ${{ startsWith(github.ref_name, 'release/') && '' || secrets.GE_ACCESS_TOKEN }}
35+
DV_ACCESS_TOKEN: ${{ startsWith(github.ref_name, 'release/') && '' || secrets.DEVELOCITY_ACCESS_KEY }}
3636
with:
3737
java-version: |
3838
8
@@ -43,10 +43,8 @@ jobs:
4343

4444
deploy-snapshot:
4545
needs: build
46-
# FIXME: Restore `2.x` before merging
47-
# if: github.repository == 'apache/logging-log4j2' && github.ref_name == '2.x'
48-
if: github.repository == 'apache/logging-log4j2' && github.ref == 'refs/pull/3105/merge'
49-
uses: apache/logging-parent/.github/workflows/deploy-snapshot-reusable.yaml@feature/reproducibility-check
46+
if: github.repository == 'apache/logging-log4j2' && github.ref_name == '2.x'
47+
uses: apache/logging-parent/.github/workflows/deploy-snapshot-reusable.yaml@rel/12.0.0
5048
# Secrets for deployments
5149
secrets:
5250
NEXUS_USERNAME: ${{ secrets.NEXUS_USER }}
@@ -59,7 +57,7 @@ jobs:
5957
deploy-release:
6058
needs: build
6159
if: github.repository == 'apache/logging-log4j2' && startsWith(github.ref_name, 'release/')
62-
uses: apache/logging-parent/.github/workflows/deploy-release-reusable.yaml@feature/reproducibility-check
60+
uses: apache/logging-parent/.github/workflows/deploy-release-reusable.yaml@rel/12.0.0
6361
# Secrets for deployments
6462
secrets:
6563
GPG_SECRET_KEY: ${{ secrets.LOGGING_GPG_SECRET_KEY }}
@@ -80,7 +78,7 @@ jobs:
8078
needs: [ deploy-snapshot, deploy-release ]
8179
if: ${{ always() && (needs.deploy-snapshot.result == 'success' || needs.deploy-release.result == 'success') }}
8280
name: "verify-reproducibility (${{ needs.deploy-release.result == 'success' && needs.deploy-release.outputs.project-version || needs.deploy-snapshot.outputs.project-version }})"
83-
uses: apache/logging-parent/.github/workflows/verify-reproducibility-reusable.yaml@feature/reproducibility-check
81+
uses: apache/logging-parent/.github/workflows/verify-reproducibility-reusable.yaml@12.0.0
8482
with:
8583
nexus-url: ${{ needs.deploy-release.result == 'success' && needs.deploy-release.outputs.nexus-url || needs.deploy-snapshot.outputs.nexus-url }}
8684
# Encode the `runs-on` input as JSON array

0 commit comments

Comments
 (0)
Please sign in to comment.