File tree Expand file tree Collapse file tree 4 files changed +17
-17
lines changed Expand file tree Collapse file tree 4 files changed +17
-17
lines changed Original file line number Diff line number Diff line change 1
- name : Build and deploy snapshot
1
+ name : Build and Deploy Snapshot
2
2
on :
3
3
push :
4
4
branches :
@@ -11,14 +11,14 @@ jobs:
11
11
name : Build and Deploy Snapshot
12
12
runs-on : ubuntu22-8-32
13
13
steps :
14
- - name : Setup Java
14
+ - name : Set Up Java
15
15
uses : actions/setup-java@v4
16
16
with :
17
17
distribution : ' liberica'
18
18
java-version : 17
19
- - name : Checkout
19
+ - name : Check Out
20
20
uses : actions/checkout@v4
21
- - name : Set up Gradle
21
+ - name : Set Up Gradle
22
22
uses : gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5
23
23
with :
24
24
cache-read-only : false
@@ -73,23 +73,23 @@ jobs:
73
73
runs-on : ubuntu-latest
74
74
needs : build-and-deploy-snapshot
75
75
steps :
76
- - name : Checkout Release Verification Tests
76
+ - name : Check Out Release Verification Tests
77
77
uses : actions/checkout@v4
78
78
with :
79
79
repository : spring-projects/spring-boot-release-verification
80
80
ref : ' main'
81
81
token : ${{ secrets.GH_ACTIONS_REPO_TOKEN }}
82
- - name : Checkout Send Notification Action
82
+ - name : Check Out Send Notification Action
83
83
uses : actions/checkout@v4
84
84
with :
85
85
path : spring-boot
86
86
sparse-checkout : .github/actions/send-notification
87
- - name : Setup Java
87
+ - name : Set Up Java
88
88
uses : actions/setup-java@v4
89
89
with :
90
90
distribution : ' liberica'
91
91
java-version : 17
92
- - name : Setup Gradle
92
+ - name : Set Up Gradle
93
93
uses : gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5
94
94
with :
95
95
cache-read-only : false
Original file line number Diff line number Diff line change @@ -10,16 +10,16 @@ jobs:
10
10
runs-on : ubuntu22-8-32
11
11
if : ${{ github.repository == 'spring-projects/spring-boot' }}
12
12
steps :
13
- - name : Setup JDK 17
13
+ - name : Set Up JDK 17
14
14
uses : actions/setup-java@v4
15
15
with :
16
16
java-version : ' 17'
17
17
distribution : ' liberica'
18
- - name : Checkout
18
+ - name : Check Out
19
19
uses : actions/checkout@v4
20
20
- name : Validate Gradle Wrapper
21
21
uses : gradle/wrapper-validation-action@b231772637bb498f11fdbc86052b6e8a8dc9fc92
22
- - name : Setup Gradle
22
+ - name : Set Up Gradle
23
23
uses : gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5
24
24
- name : Build
25
25
env :
Original file line number Diff line number Diff line change 28
28
name : ' ${{ matrix.os.name}} | Java ${{ matrix.java.version}}'
29
29
runs-on : ${{ matrix.os.id }}
30
30
steps :
31
- - name : Set up Java
31
+ - name : Set Up Java
32
32
uses : actions/setup-java@v4
33
33
with :
34
34
distribution : ' liberica'
@@ -41,20 +41,20 @@ jobs:
41
41
git config --global core.autocrlf true
42
42
git config --global core.longPaths true
43
43
Stop-Service -name Docker
44
- - name : Check out code
44
+ - name : Check Out Code
45
45
uses : actions/checkout@v4
46
- - name : Set up Gradle
46
+ - name : Set Up Gradle
47
47
uses : gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5
48
48
with :
49
49
cache-read-only : false
50
- - name : Configure Gradle properties
50
+ - name : Configure Gradle Properties
51
51
shell : bash
52
52
run : |
53
53
mkdir -p $HOME/.gradle
54
54
echo 'systemProp.user.name=spring-builds+github' >> $HOME/.gradle/gradle.properties
55
55
echo 'systemProp.org.gradle.internal.launcher.welcomeMessageEnabled=false' >> $HOME/.gradle/gradle.properties
56
56
echo 'org.gradle.daemon=false' >> $HOME/.gradle/gradle.properties
57
- - name : Configure toolchain properties
57
+ - name : Configure Toolchain Properties
58
58
if : ${{ matrix.java.toolchain }}
59
59
shell : bash
60
60
run : |
71
71
GRADLE_ENTERPRISE_CACHE_USERNAME : ${{ secrets.GRADLE_ENTERPRISE_CACHE_USER }}
72
72
GRADLE_ENTERPRISE_CACHE_PASSWORD : ${{ secrets.GRADLE_ENTERPRISE_CACHE_PASSWORD }}
73
73
run : ./gradlew build
74
- - name : Send notification
74
+ - name : Send Notification
75
75
uses : ./.github/actions/send-notification
76
76
if : always()
77
77
with :
File renamed without changes.
You can’t perform that action at this time.
0 commit comments