Bump com.google.protobuf:protobuf-java from 3.19.4 to 3.25.5 #127
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: Build under Windows | |
on: pull_request | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v2 | |
with: | |
java-version: 11 | |
distribution: zulu | |
cache: gradle | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 'lts/*' | |
- name: Pull config | |
run: git submodule update --init --recursive | |
- name: Build project and run tests | |
shell: cmd | |
# For the reason on `--no-daemon` see https://github.com/actions/cache/issues/454 | |
run: gradlew.bat build --stacktrace --no-daemon | |
# See: https://github.com/marketplace/actions/junit-report-action | |
- name: Publish Test Report | |
uses: mikepenz/action-junit-report@v2.8.4 | |
if: always() # always run even if the previous step fails | |
with: | |
report_paths: '**/build/test-results/test/TEST-*.xml' |