From bb4d65499fbf5e2ab0a9e107f9706879832ceae4 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Tue, 4 Nov 2025 11:17:05 +0000 Subject: [PATCH] Try 0.0.4-SNAPSHOT of artifactory-deploy-action See gh-47936 --- .github/workflows/build-and-deploy-snapshot.yml | 3 ++- .github/workflows/release.yml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-deploy-snapshot.yml b/.github/workflows/build-and-deploy-snapshot.yml index 218b2cb9fd2..585c7ebb6c0 100644 --- a/.github/workflows/build-and-deploy-snapshot.yml +++ b/.github/workflows/build-and-deploy-snapshot.yml @@ -28,7 +28,7 @@ jobs: gradle-cache-read-only: false publish: true - name: Deploy - uses: spring-io/artifactory-deploy-action@dc1913008c0599f0c4b1fdafb6ff3c502b3565ea # v0.0.2 + uses: spring-io/artifactory-deploy-action@98413f56596824690f670a8cd1534594a05278c5 # v0.0.4-SNAPSHOT with: build-name: ${{ vars.COMMERCIAL && format('spring-boot-commercial-{0}', github.ref_name) || format('spring-boot-{0}', github.ref_name) }} folder: 'deployment-repository' @@ -37,6 +37,7 @@ jobs: repository: ${{ vars.COMMERCIAL && 'spring-enterprise-maven-dev-local' || 'libs-snapshot-local' }} signing-key: ${{ secrets.GPG_PRIVATE_KEY }} signing-passphrase: ${{ secrets.GPG_PASSPHRASE }} + threads: 8 uri: ${{ vars.COMMERCIAL_DEPLOY_REPO_URL || 'https://repo.spring.io' }} username: ${{ vars.COMMERCIAL && secrets.COMMERCIAL_ARTIFACTORY_USERNAME || secrets.ARTIFACTORY_USERNAME }} - name: Send Notification diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 725381adbde..9fdd75cad1d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,7 +27,7 @@ jobs: gradle-cache-read-only: false publish: true - name: Stage Release - uses: spring-io/artifactory-deploy-action@dc1913008c0599f0c4b1fdafb6ff3c502b3565ea # v0.0.2 + uses: spring-io/artifactory-deploy-action@98413f56596824690f670a8cd1534594a05278c5 # v0.0.4-SNAPSHOT with: build-name: ${{ vars.COMMERCIAL && format('spring-boot-commercial-{0}', steps.build-and-publish.outputs.version) || format('spring-boot-{0}', steps.build-and-publish.outputs.version) }} folder: 'deployment-repository' @@ -36,6 +36,7 @@ jobs: repository: ${{ vars.COMMERCIAL && 'spring-enterprise-maven-stage-local' || 'libs-staging-local' }} signing-key: ${{ secrets.GPG_PRIVATE_KEY }} signing-passphrase: ${{ secrets.GPG_PASSPHRASE }} + threads: 8 uri: ${{ vars.COMMERCIAL_DEPLOY_REPO_URL || 'https://repo.spring.io' }} username: ${{ vars.COMMERCIAL && secrets.COMMERCIAL_ARTIFACTORY_USERNAME || secrets.ARTIFACTORY_USERNAME }} - name: Send Notification