Skip to content

chore(deps): bump actions/checkout from 4.1.7 to 4.2.0 #1333

chore(deps): bump actions/checkout from 4.1.7 to 4.2.0

chore(deps): bump actions/checkout from 4.1.7 to 4.2.0 #1333

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@d632683dd7b4114ad314bca15554477dd762a938 #v4.2.0
- name: Set up JDK
uses: actions/setup-java@2dfa2011c5b2a0f1489bf9e433881c92c1631f88 # v4.3.0
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