Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/check-samples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
boot_version: ${{ steps.continue.outputs.boot_version }}
pulsar_version: ${{ steps.continue.outputs.pulsar_version }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- id: continue
name: Determine if should continue
run: |
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
runs-on: ubuntu-latest
if: needs.prerequisites.outputs.runjobs
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: spring-io/spring-gradle-build-action@v2
with:
java-version: '25'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-dispatcher-1.2.x.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 1
- name: Dispatch
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
project_version: ${{ steps.continue.outputs.project_version }}
boot_version: ${{ steps.continue.outputs.boot_version }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- id: continue
name: Determine if should continue
run: |
Expand All @@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-latest
if: needs.prerequisites.outputs.runjobs
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: spring-io/spring-gradle-build-action@v2
with:
java-version: '25'
Expand All @@ -58,7 +58,7 @@ jobs:
runs-on: ubuntu-latest
if: needs.prerequisites.outputs.runjobs
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: spring-io/spring-gradle-build-action@v2
with:
java-version: '25'
Expand All @@ -81,7 +81,7 @@ jobs:
runs-on: ubuntu-latest
if: needs.prerequisites.outputs.runjobs
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: spring-io/spring-gradle-build-action@v2
with:
java-version: '25'
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
boot_version: ${{ steps.continue.outputs.boot_version }}
should_deploy_artifacts: ${{ steps.should-deploy-artifacts.outputs.result }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- id: continue
name: Determine if should continue
run: |
Expand All @@ -63,7 +63,7 @@ jobs:
runs-on: ubuntu-latest
if: needs.prerequisites.outputs.runjobs
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: spring-io/spring-gradle-build-action@v2
with:
java-version: '25'
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
runs-on: ubuntu-latest
if: ${{ needs.prerequisites.outputs.should_deploy_artifacts }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: spring-io/spring-gradle-build-action@v2
with:
java-version: '25'
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
./gradlew -PdeploymentRepository=$(pwd)/deployment-repository publishAllPublicationsToDeploymentRepository
- name: Publish Staged Artifacts to Artifactory
if: ${{ steps.deploy-location.outputs.deploy_location == 'artifactory' }}
uses: spring-io/artifactory-deploy-action@dc1913008c0599f0c4b1fdafb6ff3c502b3565ea # v0.0.2
uses: spring-io/artifactory-deploy-action@926d7f7cc810569395346bf3a4d91b380b3e355b # v0.0.4
with:
artifact-properties: |
/**/*docs-*.zip::zip.name=spring-pulsar,zip.type=docs,zip.deployed=false
Expand Down Expand Up @@ -172,7 +172,7 @@ jobs:
./gradlew -PdeploymentRepository=$(pwd)/deployment-repository :spring-pulsar-docs:publishAllPublicationsToDeploymentRepository
- name: Still publish docs module to Artifactory when deploy location is Central (publish)
if: ${{ steps.deploy-location.outputs.deploy_location == 'central' }}
uses: spring-io/artifactory-deploy-action@dc1913008c0599f0c4b1fdafb6ff3c502b3565ea # v0.0.2
uses: spring-io/artifactory-deploy-action@926d7f7cc810569395346bf3a4d91b380b3e355b # v0.0.4
with:
artifact-properties: |
/**/*docs-*.zip::zip.name=spring-pulsar,zip.type=docs,zip.deployed=false
Expand All @@ -190,7 +190,7 @@ jobs:
needs: [build_jdk_25, check_samples, scan]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: spring-io/spring-gradle-build-action@v2
with:
java-version: '25'
Expand Down Expand Up @@ -229,7 +229,7 @@ jobs:
RELEASE_REPO: https://repo1.maven.org/maven2
ARTIFACT_PATH: org/springframework/pulsar/spring-pulsar
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
token: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}
- uses: spring-io/spring-gradle-build-action@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-docs-adhoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
if: github.repository == 'spring-projects/spring-pulsar'
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
ref: ${{ inputs.branch-or-tag }}
- uses: spring-io/spring-gradle-build-action@v2
Expand All @@ -43,7 +43,7 @@ jobs:
echo "ls -R $(pwd)/deployment-repository"
ls -R $(pwd)/deployment-repository
- name: Publish Staged spring-pulsar-docs to Artifactory
uses: spring-io/artifactory-deploy-action@dc1913008c0599f0c4b1fdafb6ff3c502b3565ea # v0.0.2
uses: spring-io/artifactory-deploy-action@926d7f7cc810569395346bf3a4d91b380b3e355b # v0.0.4
with:
artifact-properties: |
/**/*docs-*.zip::zip.name=spring-pulsar,zip.type=docs,zip.deployed=false
Expand All @@ -60,7 +60,7 @@ jobs:
runs-on: ubuntu-latest
if: github.repository == 'spring-projects/spring-pulsar'
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
ref: ${{ inputs.branch-or-tag }}
- uses: spring-io/spring-gradle-build-action@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-docs-dispatcher-antora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
if: github.repository_owner == 'spring-projects'
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: docs-build
fetch-depth: 1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
steps:
- id: checkout-source
name: Checkout source code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
token: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trivy-scan-dispatcher-1.2.x.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 1
- name: Dispatch
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trivy-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
TRIVY_DB_REPOSITORY: public.ecr.aws/aquasecurity/trivy-db,aquasec/trivy-db,ghcr.io/aquasecurity/trivy-db
TRIVY_JAVA_DB_REPOSITORY: public.ecr.aws/aquasecurity/trivy-java-db,aquasec/trivy-java-db,ghcr.io/aquasecurity/trivy-java-db
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: spring-io/spring-gradle-build-action@v2
with:
java-version: '25'
Expand Down