Bump org.postgresql:postgresql from 42.7.2 to 42.7.3 #41
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
# This workflow will build a Java project with Maven | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | |
name: LGS CI Feature Branches | |
on: | |
push: | |
branches: | |
- 'feature/**' | |
- 'bugfix/**' | |
- 'hotfix/**' | |
- 'dependabot/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
cache: maven | |
- uses: s4u/[email protected] | |
with: | |
servers: | | |
[{ | |
"id": "github-lgs-pdp", | |
"username": "${{ secrets.GH_PACKAGE_USER }}", | |
"password": "${{ secrets.GH_PACKAGE_TOKEN }}" | |
}] | |
- name: Maven verify | |
run: mvn -B verify -Dmaven.test.skip | |
- name: Maven run tests | |
run: mvn -B test | |
- name: Maven build package | |
run: mvn -B package -Dmaven.test.skip |