File tree Expand file tree Collapse file tree 3 files changed +21
-12
lines changed
Expand file tree Collapse file tree 3 files changed +21
-12
lines changed Original file line number Diff line number Diff line change @@ -16,23 +16,26 @@ jobs:
1616 java : [ 8 ]
1717 name : CI with Java ${{ matrix.java }}
1818 steps :
19- - uses : actions/checkout@v1
19+ - uses : actions/checkout@v6
20+ with :
21+ fetch-depth : 0
2022 - name : Setup git user
2123 run : |
2224 git config --global user.name "NetflixOss Maintainers"
2325 git config --global user.email "netflix-oss@netflix.com"
2426 - name : Setup jdk
25- uses : actions/setup-java@v1
27+ uses : actions/setup-java@v5
2628 with :
2729 java-version : ${{ matrix.java }}
28- - uses : actions/cache@v4
30+ distribution : ' zulu'
31+ - uses : actions/cache@v5
2932 id : gradle-cache
3033 with :
3134 path : ~/.gradle/caches
3235 key : ${{ runner.os }}-gradle-${{ hashFiles('**/gradle/dependency-locks/*.lockfile') }}
3336 restore-keys : |
3437 - ${{ runner.os }}-gradle-
35- - uses : actions/cache@v4
38+ - uses : actions/cache@v5
3639 id : gradle-wrapper-cache
3740 with :
3841 path : ~/.gradle/wrapper
Original file line number Diff line number Diff line change 1111jobs :
1212 build :
1313 runs-on : ubuntu-latest
14+ environment : Publish
1415 steps :
15- - uses : actions/checkout@v1
16+ - uses : actions/checkout@v6
17+ with :
18+ fetch-depth : 0
1619 - name : Setup git user
1720 run : |
1821 git config --global user.name "NetflixOss Maintainers"
1922 git config --global user.email "netflix-oss@netflix.com"
2023 - name : Setup jdk 8
21- uses : actions/setup-java@v1
24+ uses : actions/setup-java@v5
2225 with :
2326 java-version : 1.8
24- - uses : actions/cache@v4
27+ distribution : ' zulu'
28+ - uses : actions/cache@v5
2529 id : gradle-cache
2630 with :
2731 path : ~/.gradle/caches
2832 key : ${{ runner.os }}-gradle-${{ hashFiles('**/gradle/dependency-locks/*.lockfile') }}
2933 restore-keys : |
3034 - ${{ runner.os }}-gradle-
31- - uses : actions/cache@v4
35+ - uses : actions/cache@v5
3236 id : gradle-wrapper-cache
3337 with :
3438 path : ~/.gradle/wrapper
Original file line number Diff line number Diff line change 88jobs :
99 build :
1010 runs-on : ubuntu-latest
11+ environment : Publish
1112 steps :
12- - uses : actions/checkout@v2
13+ - uses : actions/checkout@v6
1314 with :
1415 fetch-depth : 0
1516 - name : Setup git user
1617 run : |
1718 git config --global user.name "NetflixOss Maintainers"
1819 git config --global user.email "netflix-oss@netflix.com"
1920 - name : Set up JDK
20- uses : actions/setup-java@v1
21+ uses : actions/setup-java@v5
2122 with :
2223 java-version : 8
23- - uses : actions/cache@v4
24+ distribution : ' zulu'
25+ - uses : actions/cache@v5
2426 id : gradle-cache
2527 with :
2628 path : |
2729 ~/.gradle/caches
2830 key : ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
29- - uses : actions/cache@v4
31+ - uses : actions/cache@v5
3032 id : gradle-wrapper-cache
3133 with :
3234 path : |
You can’t perform that action at this time.
0 commit comments