[Snyk] Upgrade protobufjs from 7.3.2 to 7.4.0 #589
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: Android CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: macos-11 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: Install system dependencies | |
run: brew install boost ninja | |
- name: Install Android Dependencies | |
run: | | |
tools/install-android-dependencies | |
- name: Cache internal dependencies | |
id: internal_cache | |
uses: actions/[email protected] | |
with: | |
path: build/local | |
key: ${{ runner.os }}-internal-${{ hashFiles('tools/install-dependencies') }} | |
- name: Install internal dependencies | |
run: | | |
tools/install-dependencies | |
if: steps.internal_cache.outputs.cache-hit != 'true' | |
- name: Run test | |
run: | | |
tools/generate-files | |
tools/android-test | |
- name: Build sample app | |
run: | | |
tools/samples-build android | |
env: | |
GITHUB_USER: ${{ github.actor }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |