fix(deps): update dependency com.google.protobuf:protobuf-java to v3.25.5 [security] #793
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
test: | |
name: "${{ matrix.root-pom }} on JDK ${{ matrix.java }}" | |
strategy: | |
matrix: | |
java: [ 11 ] | |
root-pom: [ 'pom.xml' ] | |
runs-on: ubuntu-latest | |
env: | |
ROOT_POM: ${{ matrix.root-pom }} | |
steps: | |
- uses: actions/checkout@v3 | |
# Cancel any previous runs for the same branch that are still running. | |
- name: 'Cancel previous runs' | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- name: 'Set up JDK ${{ matrix.java }}' | |
uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'zulu' | |
- name: Checkstyle for Java | |
uses: dbelyaev/[email protected] | |
with: | |
github_token: ${{ github.token }} | |
workdir: . # optional, default is . | |
level: info # optional, default is info | |
server-username: CI_DEPLOY_USERNAME | |
server-password: CI_DEPLOY_PASSWORD | |
generate_docs: | |
name: 'Generate latest docs' | |
needs: test | |
if: github.event_name == 'push' && github.repository == 'google/guava' | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Check out repository' | |
uses: actions/[email protected] | |
- name: 'Cache local Maven repository' | |
uses: actions/[email protected] | |
with: | |
path: ~/.m2/repository | |
key: maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
maven- | |
- name: 'Set up JDK 11' | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 11 | |
distribution: 'zulu' | |
- name: 'Generate latest docs' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: ./util/update_snapshot_docs.sh |