Skip to content
Closed
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
2 changes: 2 additions & 0 deletions .github/workflows/loggingTesting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ jobs:
java-version: '21'

- name: Get JFrog OIDC token
shell: bash
run: |
set -euo pipefail

Expand All @@ -70,6 +71,7 @@ jobs:
echo "JFrog OIDC token obtained successfully"

- name: Configure maven
shell: bash
run: |
set -euo pipefail

Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/runIntegrationTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,11 @@ jobs:
echo "Maven configured to use JFrog registry"
- uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
with:
path: ~/.m2
# Cache only the local repository — caching ~/.m2 itself would
# restore a stale settings.xml on top of the JFrog-configured one
# written above, causing Maven to bypass the mirror and hit Maven
# Central directly.
path: ~/.m2/repository
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Create .pem file from secret
Expand Down
Loading