Skip to content

fix(deps): bump de.flapdoodle.embed:de.flapdoodle.embed.mongo.spring3x from 4.13.0 to 4.14.0 #2160

fix(deps): bump de.flapdoodle.embed:de.flapdoodle.embed.mongo.spring3x from 4.13.0 to 4.14.0

fix(deps): bump de.flapdoodle.embed:de.flapdoodle.embed.mongo.spring3x from 4.13.0 to 4.14.0 #2160

# This workflow uploads snapshots of Pull Requests
name: Pull Request Snapshots
on: [pull_request]
env:
SEMANTIC_VERSION: PR-${{ github.event.number }}-SNAPSHOT
jobs:
pull-request-snapshots:
# do not execute for PRs that origin from forks or created by dependabot since we are missing the secrets for the push
if: "!(github.event.pull_request && github.event.pull_request.head.repo.fork) && github.actor != 'dependabot[bot]'"
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # tag=v3
- name: Set up JDK 17
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9
with:
distribution: 'temurin'
java-version: 17
cache: 'gradle'
- name: Build and Sign packages
run: ./gradlew --parallel signMavenPublication
env:
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.SIGNING_PRIVATE_KEY }}
ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.SIGNING_PRIVATE_KEY_SECRET }}
- name: Publish Snapshot
run: ./gradlew -x signMavenPublication publishMavenPublicationToSdaInternRepository
env:
SDA_NEXUS_USER: ${{ secrets.NEXUS_LOGIN_USER }}
SDA_NEXUS_PASSWORD: ${{ secrets.NEXUS_LOGIN_PASSWORD }}