File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -12,16 +12,17 @@ jobs:
1212 runs-on : ubuntu-latest
1313
1414 steps :
15- - uses : actions/checkout@v2
15+ - uses : actions/checkout@v3.3.0 # https://github.com/actions/checkout/releases
1616 - run : sed "s/{BUILDID}/$GITHUB_RUN_NUMBER/g" pom.xml > _pom.xml; rm pom.xml; mv _pom.xml pom.xml
17- - name : Set up JDK 1. 8
18- uses : actions/setup-java@v1
17+ - name : Set up JDK 8
18+ uses : actions/setup-java@v3.9.0 # https://github.com/actions/setup-java/releases
1919 with :
20- java-version : 1.8
20+ distribution : ' temurin'
21+ java-version : 8
2122 - name : Build with Maven
2223 run : mvn clean install
2324 - run : mkdir staging && cp target/*.jar staging
24- - uses : actions/upload-artifact@v1
25+ - uses : actions/upload-artifact@v3.1.2 # https://github.com/actions/upload-artifact/releases
2526 with :
2627 name : Package
2728 path : staging
You can’t perform that action at this time.
0 commit comments