File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55 build :
66 runs-on : ubuntu-latest
77 steps :
8- - uses : actions/checkout@v2
9- - uses : actions/setup-java@v2
8+ - name : Checkout repository
9+ uses : actions/checkout@v4
10+
11+ - name : Set up Java
12+ uses : actions/setup-java@v4
1013 with :
14+ distribution : ' temurin'
1115 java-version : 21
12- distribution : adopt
16+
1317 - name : Build
1418 run : ./gradlew build
19+
20+ - name : Upload artifacts
21+ uses : actions/upload-artifact@v4
22+ with :
23+ name : build-artifacts
24+ path : build/libs/
Original file line number Diff line number Diff line change 55 build :
66 runs-on : ubuntu-latest
77 steps :
8- - uses : actions/checkout@v2
9- - uses : actions/setup-java@v2
8+ - name : Checkout repository
9+ uses : actions/checkout@v4
10+
11+ - name : Set up Java
12+ uses : actions/setup-java@v4
1013 with :
14+ distribution : ' temurin'
1115 java-version : 21
12- distribution : adopt
16+
1317 - name : Build
1418 run : ./gradlew build
19+
1520 - name : Upload artifacts
16- uses : actions/upload-artifact@v2.2.4
21+ uses : actions/upload-artifact@v4
1722 with :
1823 name : build-artifacts
19- path : build/libs
24+ path : build/libs/
You can’t perform that action at this time.
0 commit comments