Skip to content

Commit

Permalink
Merge pull request #22277 from Thumimku/fixJacocoInBuilder
Browse files Browse the repository at this point in the history
Fix curl cmd in Fapi and OIDC suites
  • Loading branch information
madurangasiriwardena authored Jan 17, 2025
2 parents a1b5118 + 9ccb6fc commit c8f8e3e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/fapi-oidc-conformance-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Get Jacoco Agent
id: download_jacoco
run: |
curl -vLJO -H 'Accept: application/octet-stream' https://search.maven.org/remotecontent?filepath=org/jacoco/jacoco/0.8.12/jacoco-0.8.12.zip
curl -vLJ -H 'Accept: application/octet-stream' -o jacoco-0.8.12.zip "https://search.maven.org/remotecontent?filepath=org/jacoco/jacoco/0.8.12/jacoco-0.8.12.zip"
unzip jacoco-0.8.12.zip -d jacoco-0.8.12
- name: Get IS zip
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/oidc-conformance-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,8 @@ jobs:
- name: Download Jacoco Agent
id: download_jacoco
run: |
curl -vLJO -H 'Accept: application/octet-stream' https://search.maven.org/remotecontent?filepath=org/jacoco/jacoco/0.8.12/jacoco-0.8.12.zip
curl -vLJ -H 'Accept: application/octet-stream' -o jacoco-0.8.12.zip "https://search.maven.org/remotecontent?filepath=org/jacoco/jacoco/0.8.12/jacoco-0.8.12.zip"
unzip jacoco-0.8.12.zip -d jacoco-0.8.12
- name: Run IS
run: |
Expand Down

0 comments on commit c8f8e3e

Please sign in to comment.