Skip to content

Commit 1456b72

Browse files
artembilanspring-builds
authored andcommitted
The main for Gradle-based reusable workflows
The `gradle-setup` GHA now installs Gradle `9.0.0` where some of the plugins we use are not compatible yet. Instead, we have to use `gradlew` to rely on the wrapper we have in the branch (cherry picked from commit b3138f3)
1 parent 6db1d4e commit 1456b72

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci-snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ concurrency:
2222

2323
jobs:
2424
build-snapshot:
25-
uses: spring-io/spring-github-workflows/.github/workflows/spring-artifactory-gradle-snapshot.yml@v5
25+
uses: spring-io/spring-github-workflows/.github/workflows/spring-artifactory-gradle-snapshot.yml@main
2626
with:
2727
gradleTasks: ${{ github.event_name == 'schedule' && '--rerun-tasks --refresh-dependencies' || inputs.gradleOptions }}
2828
secrets:

.github/workflows/pr-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ on:
88

99
jobs:
1010
build-pull-request:
11-
uses: spring-io/spring-github-workflows/.github/workflows/spring-gradle-pull-request-build.yml@v5
11+
uses: spring-io/spring-github-workflows/.github/workflows/spring-gradle-pull-request-build.yml@main

.github/workflows/verify-staged-artifacts.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ jobs:
4545
sed -i "1,/springIntegrationVersion.*/s/springIntegrationVersion.*/springIntegrationVersion='${{ inputs.releaseVersion }}'/" build.gradle
4646
4747
- name: Verify Spring Integration Samples against staged release
48-
run: gradle check --init-script staging-repo-init.gradle
48+
run: ./gradlew check --init-script staging-repo-init.gradle

0 commit comments

Comments
 (0)