Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/maven-goal/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,12 @@ runs:
using: "composite"
steps:
- name: Set up JDK
uses: actions/setup-java@v4
uses: actions/setup-java@v6
with:
java-version-file: .java-version
distribution: ${{ inputs.distribution }}
cache: 'maven'
Comment thread
SylvainJuge marked this conversation as resolved.
# cache intentionally disabled (cache poisoning risk): shared by CI and release
# workflows with no per-caller toggle, so it's off everywhere. elastic/observability-robots#3261
- run: "${COMMAND}"
shell: ${{ inputs.shell }}
env:
Expand Down
3 changes: 2 additions & 1 deletion .mvn/maven.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
-Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
-Dhttps.protocols=TLSv1.2
-Dmaven.wagon.http.retryHandler.count=3
-Dmaven.wagon.httpconnectionManager.ttlSeconds=25
-Dmaven.wagon.httpconnectionManager.ttlSeconds=25
-Daether.checksumPolicy=fail
Loading