File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88 changelog :
99 runs-on : ubuntu-latest
1010 steps :
11- - uses : actions/checkout@v2
12- - uses : dangoslen/changelog-enforcer@v2
11+ - uses : actions/checkout@v4
12+ - uses : dangoslen/changelog-enforcer@v3
1313 with :
1414 changeLogPath : ' CHANGELOG.md'
1515 skipLabels : ' skip changelog'
Original file line number Diff line number Diff line change 88 runs-on : ubuntu-latest
99
1010 steps :
11- - uses : actions/checkout@v1
11+ - uses : actions/checkout@v4
1212 - name : Set up JDK 11
13- uses : actions/setup-java@v1
13+ uses : actions/setup-java@v4
1414 with :
15- java-version : 11
15+ java-version : ' 11'
16+ distribution : ' temurin'
1617 - name : download and install wkhtml
1718 run : |
1819 sudo apt install curl
19- sudo curl -kLO https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.4 /wkhtmltox-0.12.4_linux-generic-amd64.tar.xz
20- sudo tar vxf wkhtmltox-0.12.4_linux-generic-amd64.tar.xz
20+ sudo curl -kLO https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.5 /wkhtmltox-0.12.5-1.centos8.x86_64.rpm
21+ sudo rpm -Uvh wkhtmltox-0.12.5-1.centos8.x86_64.rpm
2122 sudo mv wkhtmltox/bin/wkhtmlto* /usr/bin
2223 - name : Build with Gradle
2324 run : ./gradlew clean test shadowJar --stacktrace --no-daemon
2425 env :
2526 NO_NEXUS : true
26- - uses : actions/cache@v1
27+ - uses : actions/cache@v4
2728 with :
2829 path : ~/.gradle/caches
2930 key : ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
3031 restore-keys : |
3132 ${{ runner.os }}-gradle-
3233 - name : TestReport
33- uses : actions/upload-artifact@v2
34+ uses : actions/upload-artifact@v4
3435 if : ${{ always() }}
3536 with :
3637 name : JUnit Report
You can’t perform that action at this time.
0 commit comments