Skip to content

fix(deps): bump org.hibernate.validator:hibernate-validator from 9.0.0.Final to 9.0.1.Final #1630

fix(deps): bump org.hibernate.validator:hibernate-validator from 9.0.0.Final to 9.0.1.Final

fix(deps): bump org.hibernate.validator:hibernate-validator from 9.0.0.Final to 9.0.1.Final #1630

name: K8S Integration
# This test bootstraps a Kubernetes environment with Kubernetes in Docker [KinD],
# installs the MongoDB Operator and a MongoDB and then verifies that a database
# with user and password and a corresponding secret is created.
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2.2
- name: Set up JDK
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
with:
distribution: 'temurin'
java-version: 21
cache: 'gradle'
- name: Setup environment
uses: nick-fields/retry@v3
with:
timeout_minutes: 10
max_attempts: 10
retry_wait_seconds: 10
warning_on_retry: false
command: ./start.sh
- name: Run tests
uses: nick-fields/retry@v3
with:
timeout_minutes: 10
max_attempts: 10
retry_wait_seconds: 10
warning_on_retry: false
command: ./test.sh
- name: Tear down environment
uses: nick-fields/retry@v3
if: "always()"
with:
timeout_minutes: 5
max_attempts: 3
retry_wait_seconds: 10
warning_on_retry: false
command: ./stop.sh