fix(deps): bump org.apache.httpcomponents.client5:httpclient5 from 5.3.1 to 5.4.1 #9320
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
# This workflow builds the Javadoc | |
name: Javadoc | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
# build javadoc | |
javadoc: | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4.5.0 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
cache: 'gradle' | |
- name: Run Javadoc | |
run: ./gradlew javadoc |