File tree Expand file tree Collapse file tree 1 file changed +13
-13
lines changed
Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -20,16 +20,16 @@ jobs:
2020 runs-on : ubuntu-latest
2121
2222 steps :
23- - uses : actions/checkout@v3
24- - name : Set up JDK 8
25- uses : actions/setup-java@v3
26- with :
27- java-version : ' 8'
28- distribution : ' temurin'
29- cache : maven
30- - name : Build with Maven
31- run : mvn -B package --file pom.xml
32- - name : Install thrift
33- run : |
34- sudo apt-get update
35- sudo apt-get install -y thrift
23+ - uses : actions/checkout@v3
24+ - name : Set up JDK 8
25+ uses : actions/setup-java@v3
26+ with :
27+ java-version : ' 8'
28+ distribution : ' temurin'
29+ cache : maven
30+ - name : Install thrift # <-- Move this step up
31+ run : |
32+ sudo apt-get update
33+ sudo apt-get install -y thrift
34+ - name : Build with Maven
35+ run : mvn -B package --file pom.xml
You can’t perform that action at this time.
0 commit comments