File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,10 +14,10 @@ jobs:
1414
1515 steps :
1616 - name : Checkout code
17- uses : actions/checkout@v3
17+ uses : actions/checkout@v4
1818
1919 - name : Set up JDK
20- uses : actions/setup-java@v3
20+ uses : actions/setup-java@v4
2121 with :
2222 distribution : ' temurin'
2323 java-version : 17
2626 run : chmod +x ./gradlew
2727
2828 - name : Cache Gradle dependencies
29- uses : actions/cache@v3
29+ uses : actions/cache@v4
3030 with :
3131 path : ~/.gradle/caches
3232 key : ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
3737 run : ./gradlew build
3838
3939 - name : Upload build artifacts
40- uses : actions/upload-artifact@v3
40+ uses : actions/upload-artifact@v4
4141 with :
4242 name : all-modules
43- path : ' **/build/libs/*.jar'
43+ path : ' **/build/libs/*.jar'
Original file line number Diff line number Diff line change @@ -11,10 +11,10 @@ jobs:
1111
1212 steps :
1313 - name : Checkout code
14- uses : actions/checkout@v3
14+ uses : actions/checkout@v4
1515
1616 - name : Set up JDK
17- uses : actions/setup-java@v3
17+ uses : actions/setup-java@v4
1818 with :
1919 distribution : ' temurin'
2020 java-version : 17
2323 run : chmod +x ./gradlew
2424
2525 - name : Cache Gradle dependencies
26- uses : actions/cache@v3
26+ uses : actions/cache@v4
2727 with :
2828 path : ~/.gradle/caches
2929 key : ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
3434 run : ./gradlew publish
3535 env :
3636 MAVEN_USERNAME : ${{ secrets.MAVEN_USERNAME }}
37- MAVEN_PASSWORD : ${{ secrets.MAVEN_PASSWORD }}
37+ MAVEN_PASSWORD : ${{ secrets.MAVEN_PASSWORD }}
You can’t perform that action at this time.
0 commit comments