Skip to content

Commit 121ad82

Browse files
committed
Fix checkout for spring-github-workflows into .github sub-dir
The `spring-github-workflows` matches `spring-` pattern for potential Spring modules in the project. This must not happen since these are just utilities to build the project on GitHub Actions
1 parent 375bf55 commit 121ad82

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

.github/workflows/spring-artifactory-gradle-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,14 @@ jobs:
7272
uses: actions/checkout@v4
7373
with:
7474
repository: spring-io/spring-github-workflows
75-
path: spring-github-workflows
75+
path: .github/spring-github-workflows
7676
show-progress: false
7777
ref: ${{ env.WORKFLOWS_REF }}
7878

7979
- name: Build and Publish
8080
id: build-and-publish
8181
timeout-minutes: 30
82-
uses: ./spring-github-workflows/.github/actions/spring-artifactory-gradle-build
82+
uses: ./.github/spring-github-workflows/.github/actions/spring-artifactory-gradle-build
8383
with:
8484
releaseVersion: ${{ inputs.releaseVersion }}
8585
gradleTasks: ${{ inputs.gradleTasks }}

.github/workflows/spring-artifactory-gradle-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,13 +104,13 @@ jobs:
104104
uses: actions/checkout@v4
105105
with:
106106
repository: spring-io/spring-github-workflows
107-
path: spring-github-workflows
107+
path: .github/spring-github-workflows
108108
show-progress: false
109109
ref: ${{ env.WORKFLOWS_REF }}
110110

111111
- name: Dispatch Workflow
112112
timeout-minutes: 30
113-
uses: ./spring-github-workflows/.github/actions/spring-dispatch-workflow-and-wait
113+
uses: ./.github/spring-github-workflows/.github/actions/spring-dispatch-workflow-and-wait
114114
with:
115115
workflow: ${{ inputs.verifyStagedWorkflow }}
116116
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/spring-artifactory-maven-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,13 +105,13 @@ jobs:
105105
uses: actions/checkout@v4
106106
with:
107107
repository: spring-io/spring-github-workflows
108-
path: spring-github-workflows
108+
path: .github/spring-github-workflows
109109
show-progress: false
110110
ref: ${{ env.WORKFLOWS_REF }}
111111

112112
- name: Dispatch Workflow
113113
timeout-minutes: 30
114-
uses: ./spring-github-workflows/.github/actions/spring-dispatch-workflow-and-wait
114+
uses: ./.github/spring-github-workflows/.github/actions/spring-dispatch-workflow-and-wait
115115
with:
116116
workflow: ${{ inputs.verifyStagedWorkflow }}
117117
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/spring-finalize-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,11 +109,11 @@ jobs:
109109
uses: actions/checkout@v4
110110
with:
111111
repository: spring-io/spring-github-workflows
112-
path: spring-github-workflows
112+
path: .github/spring-github-workflows
113113
show-progress: false
114114

115115
- name: Update Spring IO website for new version
116-
uses: ./spring-github-workflows/.github/actions/spring-website-project-version-update
116+
uses: ./.github/spring-github-workflows/.github/actions/spring-website-project-version-update
117117
with:
118118
newVersion: ${{ inputs.milestone }}
119119
token: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}

.github/workflows/spring-find-release-version.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ jobs:
2525
uses: actions/checkout@v4
2626
with:
2727
repository: spring-io/spring-github-workflows
28-
path: spring-github-workflows
28+
path: .github/spring-github-workflows
2929
show-progress: false
3030
ref: ${{ env.WORKFLOWS_REF }}
3131

3232
- name: Find Scheduled Milestone
3333
id: find-milestone
34-
uses: ./spring-github-workflows/.github/actions/spring-scheduled-milestone-for-branch
34+
uses: ./.github/spring-github-workflows/.github/actions/spring-scheduled-milestone-for-branch
3535

3636
- name: Version to Release
3737
run: |

.github/workflows/spring-merge-dependabot-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
uses: actions/checkout@v4
5252
with:
5353
repository: spring-io/spring-github-workflows
54-
path: spring-github-workflows
54+
path: .github/spring-github-workflows
5555
show-progress: false
5656
ref: ${{ env.WORKFLOWS_REF }}
5757

@@ -84,7 +84,7 @@ jobs:
8484
- name: Find Scheduled Milestone
8585
id: find-milestone
8686
if: steps.is-auto-merge.outputs.autoMerge == 'false'
87-
uses: ./spring-github-workflows/.github/actions/spring-scheduled-milestone-for-branch
87+
uses: ./.github/spring-github-workflows/.github/actions/spring-scheduled-milestone-for-branch
8888

8989
- name: Set Milestone to Dependabot pull request
9090
if: steps.is-auto-merge.outputs.autoMerge == 'false'

0 commit comments

Comments
 (0)