Bump com.google.protobuf:protoc from 3.25.3 to 4.28.1 in the protobuf-dependencies group across 1 directory #34
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
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven | |
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
name: GCM Taskit Development PR Build | |
on: | |
pull_request: | |
branches-ignore: [ "main" ] | |
jobs: | |
dev-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout GCM Taskit | |
uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: maven | |
- name: Get GCM Version | |
run: | | |
echo "gcm_version=v$(mvn help:evaluate -Dexpression=gcm.version -q -DforceStdout --file pom.xml)" >> "$GITHUB_ENV" | |
- name: Checkout GCM | |
if: ${{ endsWith(env.gcm_version, 'SNAPSHOT') }} | |
uses: actions/checkout@v4 | |
with: | |
repository: HHS/ASPR-8 | |
path: gcm | |
ref: dev | |
- name: Get Taskit Version | |
if: ${{ endsWith(env.gcm_version, 'SNAPSHOT') }} | |
run: | | |
echo "taskit_version=v$(mvn help:evaluate -Dexpression=taskit.version -q -DforceStdout --file gcm/pom.xml)" >> "$GITHUB_ENV" | |
- name: Checkout Taskit | |
if: ${{ endsWith(env.taskit_version, 'SNAPSHOT') }} | |
uses: actions/checkout@v4 | |
with: | |
repository: HHS/ASPR-ms-taskit | |
path: taskit | |
ref: dev | |
- name: Get Util Version | |
if: ${{ endsWith(env.taskit_version, 'SNAPSHOT') }} | |
run: | | |
echo "util_version=v$(mvn help:evaluate -Dexpression=util.version -q -DforceStdout --file taskit/pom.xml)" >> "$GITHUB_ENV" | |
- name: Checkout Util | |
if: ${{ endsWith(env.util_version, 'SNAPSHOT') }} | |
uses: actions/checkout@v4 | |
with: | |
repository: HHS/ASPR-ms-util | |
path: util | |
ref: dev | |
- name: Build Util | |
if: ${{ endsWith(env.util_version, 'SNAPSHOT') }} | |
run: mvn clean install -DskipTests --file util/pom.xml | |
- name: Build Taskit | |
if: ${{ endsWith(env.taskit_version, 'SNAPSHOT') }} | |
run: mvn clean install -DskipTests --file taskit/pom.xml | |
- name: Build GCM | |
if: ${{ endsWith(env.gcm_version, 'SNAPSHOT') }} | |
run: mvn clean install -DskipTests --file gcm/simulation/pom.xml | |
- name: Build GCM Taskit | |
run: mvn clean install --file pom.xml | |
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive | |
# - name: Update dependency graph | |
# uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6 |