Bump com.google.protobuf:protobuf-java from 3.24.1 to 3.25.5 #27
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
# Ensures that the license report files were modified in this PR. | |
name: Ensure license reports updated | |
on: | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
build: | |
name: Ensure license reports updated | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
# Configure the checkout of all branches, so that it is possible to run the comparison. | |
fetch-depth: 0 | |
# Check out the `config` submodule to fetch the required script file. | |
submodules: true | |
- name: Check that `pom.xml` and `license-report.md` are modified | |
shell: bash | |
run: chmod +x ./config/scripts/ensure-reports-updated.sh && ./config/scripts/ensure-reports-updated.sh |