Skip to content

⬆️ Bump org.postgresql:postgresql from 42.5.4 to 42.5.5 #260

⬆️ Bump org.postgresql:postgresql from 42.5.4 to 42.5.5

⬆️ Bump org.postgresql:postgresql from 42.5.4 to 42.5.5 #260

Workflow file for this run

name: Compliance check and build test
on:
push:
pull_request:
types: [ opened, reopened ]
jobs:
compliance:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Advance Security Policy as Code
uses: advanced-security/[email protected]
with:
policy: it-at-m/policy-as-code
policy-path: default.yaml
token: ${{ secrets.GITHUB_TOKEN }}
argvs: "--disable-dependabot --disable-secret-scanning --disable-code-scanning --display"
build-maven:
needs: compliance
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: "17"
distribution: "temurin"
cache: "maven"
- name: Build with Maven
run: mvn --update-snapshots -f pom.xml verify