Update dependency org.flywaydb:flyway-database-postgresql to v10.18.0 #354
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: Check | |
on: | |
push: | |
pull_request: | |
branches: [ main ] | |
permissions: | |
contents: read | |
jobs: | |
check: | |
name: 'Check' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
# Ensures we don't accept a Gradle Wrapper update that has been tampered with. | |
- name: Validate Gradle Wrapper | |
uses: gradle/actions/wrapper-validation@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: | | |
21 | |
17 | |
java-package: jdk | |
cache: 'gradle' | |
- name: Build and Test | |
run: ./gradlew check --no-daemon |