Skip to content

fix(deps): bump mongoDbDriverVersion from 5.4.0 to 5.5.1 #1222

fix(deps): bump mongoDbDriverVersion from 5.4.0 to 5.5.1

fix(deps): bump mongoDbDriverVersion from 5.4.0 to 5.5.1 #1222

Workflow file for this run

# This workflow pushes the PR build to quay.io
name: Publish PR
on:
pull_request:
env:
TAG: PR-${{ github.event.number }}
jobs:
jib-push:
# Don't run for forks and dependabot because of missing secrets
if: "!(github.event.pull_request && github.event.pull_request.head.repo.fork) && github.actor != 'dependabot[bot]'"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2.2
- name: Set up Java
uses: actions/setup-java@c5195efecf7bdfc987ee8bae7a71cb8b11521c00 # v4.7.1
with:
distribution: 'temurin'
java-version: 21
cache: 'gradle'
- name: Build and Push
env:
USERNAME: ${{ secrets.QUAY_IO_USERNAME }}
PASSWORD: ${{ secrets.QUAY_IO_PASSWORD }}
run: >
./gradlew jib
-Djib.to.auth.username=${USERNAME}
-Djib.to.auth.password=${PASSWORD}
-Djib.useOnlyProjectCache=true
-Djib.console=plain
-Djib.disableUpdateChecks=true
-Djib.httpTimeout=0
-Djib.container.creationTime=USE_CURRENT_TIMESTAMP
-Djib.to.image=quay.io/sdase/mongodb-operator:${TAG}