Skip to content

fix(deps): bump org.junit:junit-bom from 5.10.3 to 5.11.0 #1295

fix(deps): bump org.junit:junit-bom from 5.10.3 to 5.11.0

fix(deps): bump org.junit:junit-bom from 5.10.3 to 5.11.0 #1295

Workflow file for this run

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@692973e3d937129bcbf40652eb9f2f61becf3332 #v4.1.7
- name: Set up JDK
uses: actions/setup-java@6a0805fcefea3d4657a47ac4c165951e33482018 # v4.2.2
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