Bump org.apache.httpcomponents.client5:httpclient5 from 5.4 to 5.4.1 #3604
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests CI | |
on: | |
push: | |
branches: | |
- 'master' # Default branch | |
- 'feature-**' # Feature branches | |
- '[0-9]+.[0-9]+.x' # Release branches | |
paths-ignore: | |
- '**/*.md' | |
- 'docs/**' | |
pull_request: | |
branches: | |
- 'master' # Default branch | |
- 'feature-**' # Feature branches | |
- '[0-9]+.[0-9]+.x' # Release branches | |
paths-ignore: | |
- '**/*.md' | |
- 'docs/**' | |
workflow_dispatch: | |
# The following concurrency group cancels in-progress jobs or runs on pull_request events only; | |
# if github.head_ref is undefined, the concurrency group will fallback to the run ID, | |
# which is guaranteed to be both unique and defined for the run. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
permissions: { } | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # tag=v4.2.1 | |
- name: Set up JDK | |
uses: actions/setup-java@b36c23c0d998641eff861008f374ee103c25ac73 # tag=v4.4.0 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
cache: 'maven' | |
- name: Execute unit tests | |
run: |- | |
mvn -B --no-transfer-progress clean | |
mvn -B --no-transfer-progress test -P enhance | |
# Publishing coverage to Codacy is only possible for builds of push events. | |
# PRs from forks do not get access to repository secrets. | |
# https://securitylab.github.com/research/github-actions-preventing-pwn-requests/ | |
- name: Publish test coverage | |
if: ${{ github.event_name != 'pull_request' && github.repository_owner == 'DependencyTrack' }} | |
uses: codacy/[email protected] | |
with: | |
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }} | |
language: Java | |
coverage-reports: target/jacoco-ut/jacoco.xml | |
- name: Save PR details | |
if: ${{ github.event_name == 'pull_request' }} | |
run: |- | |
echo ${{ github.sha }} > pr-commit.txt | |
echo ${{ github.event.number }} > pr-number.txt | |
- name: Upload PR test coverage report | |
if: ${{ github.event_name == 'pull_request' }} | |
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # tag=v4.4.3 | |
with: | |
name: pr-test-coverage-report | |
path: |- | |
pr-commit.txt | |
pr-number.txt | |
target/jacoco-ut/jacoco.xml |