Bump com.autonomousapps.dependency-analysis from 1.13.1 to 1.21.0 #75
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
# 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" | |
if: startsWith(github.repository,'odpi/') | |
steps: | |
- uses: actions/checkout@v3 | |
name: Checkout source | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 11 | |
distribution: 'temurin' | |
- uses: gradle/wrapper-validation-action@v1 | |
name: Validate gradle wrapper | |
- name: Cache Gradle packages | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
key: ${{ runner.os }}-gradle-merge-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }} | |
restore-keys: | | |
${{ runner.os }}-gradle-merge- | |
- name: Build | |
run: ./gradlew build | |
# -- | |
- name: Upload Samples | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Egeria API Samples | |
path: '**/build/libs/*.jar' |