Skip to content

chore(sdk-platform-java): consolidate versions.txt into root #1

chore(sdk-platform-java): consolidate versions.txt into root

chore(sdk-platform-java): consolidate versions.txt into root #1

on:

Check failure on line 1 in .github/workflows/sdk-platform-java-shared_dependencies.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/sdk-platform-java-shared_dependencies.yaml

Invalid workflow file

(Line: 31, Col: 5): 'if' is already defined
push:
branches:
- main
pull_request:
paths:
- 'gapic-generator-java-bom/**'
- 'gapic-generator-java-pom-parent/**'
- 'java-shared-dependencies/**'
name: sdk-platform-java shared-dependencies version check
env:
BUILD_SUBDIR: sdk-platform-java
jobs:
filter:
runs-on: ubuntu-latest
outputs:
library: ${{ steps.filter.outputs.library }}
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
id: filter
with:
filters: |
library:
- 'sdk-platform-java/**'
upper-bound-check:
needs: filter
if: ${{ needs.filter.outputs.library == 'true' }}
name: Shared Dependencies BOM upper-bound check
runs-on: ubuntu-latest
if: github.repository_owner == 'googleapis'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
- run: java -version
- name: Install maven modules
run: |
mvn install -B -ntp -DskipTests -Dclirr.skip -Dcheckstyle.skip
- name: Check the BOM content satisfies the upper-bound-check test case
run: mvn -B -V -ntp verify -Dcheckstyle.skip
working-directory: java-shared-dependencies/upper-bound-check