Bump github/codeql-action from 3.24.3 to 3.24.4 #641
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 will build a Java project with Gradle | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle | |
name: JDK 11 | |
on: | |
push: | |
branches: [ 3.x ] | |
pull_request: | |
branches: [ 3.x ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4.0.0 | |
with: | |
distribution: 'zulu' | |
java-version: '11' | |
- name: Cache Gradle packages | |
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0 | |
with: | |
path: ~/.gradle/caches | |
key: ${{ runner.os }}-gradle-1-${{ hashFiles('**/*.gradle') }} | |
restore-keys: ${{ runner.os }}-gradle-1- | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Verify generated module-info | |
run: ./gradlew -PjavaCompatibility=9 jar | |
- name: Build RxJava | |
run: ./gradlew build --stacktrace | |
- name: Generate Javadoc | |
run: ./gradlew javadoc --stacktrace |