This repository was archived by the owner on Mar 18, 2025. It is now read-only.
Bump com.autonomousapps.dependency-analysis from 1.31.0 to 2.10.1 #375
This file contains hidden or 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
| # SPDX-License-Identifier: Apache-2.0 | |
| # Copyright Contributors to the ODPi Egeria project. | |
| name: "PR Verification" | |
| on: | |
| pull_request: | |
| branches: [main, release-*, feature-*] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| name: "PR Verification" | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v3 | |
| with: | |
| java-version: 17 | |
| distribution: 'temurin' | |
| - uses: gradle/wrapper-validation-action@v1 | |
| - name: Cache Gradle packages | |
| uses: actions/cache@v3 | |
| with: | |
| path: ~/.gradle/caches | |
| key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} | |
| restore-keys: ${{ runner.os }}-gradle | |
| - name: Build | |
| run: ./gradlew build | |
| # -- | |
| - name: Upload Connector | |
| uses: actions/upload-artifact@v3 | |
| with: | |
| name: OMRS Hive Metastore Connector | |
| path: '**/build/libs/*.jar' | |