deps: update dependency com.puppycrawl.tools:checkstyle to v10.12.4 #775
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
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
# Keeping this file separate as the dependencies check would use more | |
# repositories than needed this downstream check for GraalVM native image and | |
# other Maven plugins. | |
name: downstream | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
java: [8, 11] | |
repo: | |
- java-bigquery | |
- java-bigtable | |
job-type: | |
- test # maven-surefire-plugin | |
- lint # fmt-maven-plugin and google-java-format | |
- clirr # clirr-maven-plugin | |
- javadoc # maven-javadoc-plugin | |
steps: | |
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: zulu | |
java-version: ${{matrix.java}} | |
- run: java -version | |
- run: sudo apt-get update -y | |
- run: sudo apt-get install libxml2-utils | |
- run: .kokoro/client-library-check.sh ${{matrix.repo}} ${{matrix.job-type}} | |
javadoc-with-doclet: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
repo: | |
- java-bigtable | |
steps: | |
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 11 | |
- run: java -version | |
- run: sudo apt-get update -y | |
- run: sudo apt-get install libxml2-utils | |
- run: .kokoro/client-library-check-javadoc-with-doclet.sh ${{matrix.repo}} |