Bump org.postgresql:postgresql from 42.5.1 to 42.7.2 in /camel-component #60
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
name: Build [camel-component] | |
on: | |
push: | |
paths: | |
- 'camel-component/**' | |
- '.github/workflows/camel-component-workflow.yml' | |
pull_request: | |
paths: | |
- 'camel-component/**' | |
- '.github/workflows/camel-component-workflow.yml' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Java 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: 17 | |
- name: Cache local Maven repository | |
uses: actions/cache@v2 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('camel-component/**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Check changes in [camel-component] example | |
run: cd camel-component && mvn clean install -B -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 |