chore(deps): bump org.apache.commons:commons-lang3 from 3.12.0 to 3.17.0 #408
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: "Gradle Java 11" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'adopt' | |
java-version: '11' | |
- 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 with Gradle | |
run: ./gradlew build | |
- name: Upload Connector | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Connector | |
path: build/libs/*.jar |