File tree 1 file changed +9
-7
lines changed
1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change 6
6
pull_request :
7
7
branches :
8
8
- " *"
9
- env :
10
- ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION : true
11
9
12
10
jobs :
13
11
Get-CI-Image-Tag :
@@ -30,17 +28,21 @@ jobs:
30
28
# this image tag is subject to change as more dependencies and updates will arrive over time
31
29
image : ${{ needs.Get-CI-Image-Tag.outputs.ci-image-version-linux }}
32
30
# need to switch to root so that github actions can install runner binary on container without permission issues.
33
- options : --user root
31
+ options : ${{ needs.Get-CI-Image-Tag.outputs.ci-image-start-options }}
34
32
35
33
steps :
36
- - name : Checkout
37
- uses : actions/checkout@v2
34
+ - name : Run start commands
35
+ run : ${{ needs.Get-CI-Image-Tag.outputs.ci-image-start-command }}
38
36
39
37
- name : Setup Java ${{ matrix.java }}
40
- uses : actions/setup-java@v1
38
+ uses : actions/setup-java@v4
41
39
with :
40
+ distribution : ' temurin'
42
41
java-version : ${{ matrix.java }}
43
42
43
+ - name : Checkout
44
+ uses : actions/checkout@v4
45
+
44
46
- name : Build and Test
45
47
run : |
46
48
chown -R 1000:1000 `pwd`
65
67
66
68
steps :
67
69
- name : Checkout
68
- uses : actions/checkout@v2
70
+ uses : actions/checkout@v4
69
71
70
72
- name : Setup Java ${{ matrix.java }}
71
73
uses : actions/setup-java@v1
You can’t perform that action at this time.
0 commit comments