Skip to content
This repository was archived by the owner on Nov 10, 2025. It is now read-only.

Commit 882289d

Browse files
committed
Upgrade to Checkout@v4
Add `show-progress: false` flag
1 parent e9e0922 commit 882289d

File tree

4 files changed

+14
-6
lines changed

4 files changed

+14
-6
lines changed

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,20 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525

26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2727
with:
2828
token: ${{ secrets.GH_ACTIONS_REPO_TOKEN }}
29+
show-progress: false
2930

3031
- name: Set up Gradle
3132
uses: spring-io/spring-gradle-build-action@v2
3233

3334
- name: Checkout Common Repo
34-
uses: actions/checkout@v3
35+
uses: actions/checkout@v4
3536
with:
3637
repository: spring-projects/spring-integration-aws
3738
path: init
39+
show-progress: false
3840

3941
- name: Copy the artifactory-init.gradle
4042
run: rsync init/.github/artifactory-init.gradle ~/.gradle/init.d/

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

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,19 @@ jobs:
2020
name: CI Build SNAPSHOT for ${{ github.ref_name }}
2121
steps:
2222

23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
24+
with:
25+
show-progress: false
2426

2527
- name: Set up Gradle
2628
uses: spring-io/spring-gradle-build-action@v2
2729

2830
- name: Checkout Common Repo
29-
uses: actions/checkout@v3
31+
uses: actions/checkout@v4
3032
with:
3133
repository: spring-projects/spring-integration-aws
3234
path: init
35+
show-progress: false
3336

3437
- name: Copy the artifactory-init.gradle
3538
run: rsync init/.github/artifactory-init.gradle ~/.gradle/init.d/

.github/workflows/spring-artifactory-promote-central.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,10 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919

20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121
with:
2222
repository: spring-projects/spring-integration-aws
23+
show-progress: false
2324

2425
- uses: jfrog/setup-jfrog-cli@v3
2526
with:

.github/workflows/spring-gradle-pull-request-build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ jobs:
1010

1111
steps:
1212

13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
14+
with:
15+
show-progress: false
1416

1517
- name: Set up JDK
1618
uses: actions/setup-java@v3

0 commit comments

Comments
 (0)