Skip to content

fix(deps): bump org.springframework.boot:spring-boot-dependencies from 3.3.0 to 3.3.1 #2182

fix(deps): bump org.springframework.boot:spring-boot-dependencies from 3.3.0 to 3.3.1

fix(deps): bump org.springframework.boot:spring-boot-dependencies from 3.3.0 to 3.3.1 #2182

# 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@692973e3d937129bcbf40652eb9f2f61becf3332 # 4.1.7
- 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 }}