File tree 1 file changed +27
-5
lines changed
1 file changed +27
-5
lines changed Original file line number Diff line number Diff line change @@ -12,15 +12,26 @@ jobs:
12
12
13
13
steps :
14
14
- uses : actions/checkout@v2
15
- - name : Set up JDK 17
16
- uses : actions /setup-java@v1
15
+ - name : Setup JBR 17
16
+ uses : gmitch215 /setup-java@99fc2135f7f7b08068e180cb5f29340f9de70720
17
17
with :
18
+ distribution : ' jetbrains'
18
19
java-version : 17
20
+ cache : ' gradle'
21
+ - name : Cache Gradle packages
22
+ uses : actions/cache@v2
23
+ with :
24
+ path : |
25
+ ~/.gradle/caches
26
+ ~/.gradle/wrapper
27
+ key : ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
28
+ restore-keys : |
29
+ ${{ runner.os }}-gradle-
19
30
- name : Set up Elixir
20
31
uses : erlef/setup-beam@v1
21
32
with :
22
33
otp-version : 24.3.4.6
23
- elixir-version : 1.13.0
34
+ elixir-version : 1.13.4
24
35
- name : Export OTP_RELEASE
25
36
run : echo "OTP_RELEASE=24.3.4.6" >> $GITHUB_ENV
26
37
- name : Export ERLANG_SDK_HOME
@@ -42,10 +53,21 @@ jobs:
42
53
43
54
steps :
44
55
- uses : actions/checkout@v2
45
- - name : Set up JDK 17
46
- uses : actions /setup-java@v1
56
+ - name : Setup JBR 17
57
+ uses : gmitch215 /setup-java@99fc2135f7f7b08068e180cb5f29340f9de70720
47
58
with :
59
+ distribution : ' jetbrains'
48
60
java-version : 17
61
+ cache : ' gradle'
62
+ - name : Cache Gradle packages
63
+ uses : actions/cache@v2
64
+ with :
65
+ path : |
66
+ ~/.gradle/caches
67
+ ~/.gradle/wrapper
68
+ key : ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
69
+ restore-keys : |
70
+ ${{ runner.os }}-gradle-
49
71
- name : Grant execute permission for gradlew
50
72
run : chmod +x gradlew
51
73
- name : Run Plugin Verifier
You can’t perform that action at this time.
0 commit comments