Commit 6ae268f 1 parent 105e912 commit 6ae268f Copy full SHA for 6ae268f
File tree 2 files changed +11
-9
lines changed
2 files changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -27,13 +27,13 @@ jobs:
27
27
# using the same image which is used by opensearch-build team to build the OpenSearch Distribution
28
28
# this image tag is subject to change as more dependencies and updates will arrive over time
29
29
image : ${{ needs.Get-CI-Image-Tag.outputs.ci-image-version-linux }}
30
- # need to switch to root so that github actions can install runner binary on container without permission issues.
31
- options : --user root
32
-
30
+ options : ${{ needs.Get-CI-Image-Tag.outputs.ci-image-start-options }}
33
31
steps :
32
+ - name : Run start commands
33
+ run : ${{ needs.Get-CI-Image-Tag.outputs.ci-image-start-command }}
34
34
# This step uses the checkout Github action: https://github.com/actions/checkout
35
35
- name : Checkout Branch
36
- uses : actions/checkout@v2
36
+ uses : actions/checkout@v4
37
37
38
38
# This step uses the setup-java Github action: https://github.com/actions/setup-java
39
39
- name : Setup Java ${{ matrix.java }}
92
92
93
93
steps :
94
94
- name : Checkout Branch
95
- uses : actions/checkout@v2
95
+ uses : actions/checkout@v4
96
96
97
97
# This is a hack, but this step creates a link to the X: mounted drive, which makes the path
98
98
# short enough to work on Windows
Original file line number Diff line number Diff line change @@ -28,11 +28,13 @@ jobs:
28
28
# using the same image which is used by opensearch-build team to build the OpenSearch Distribution
29
29
# this image tag is subject to change as more dependencies and updates will arrive over time
30
30
image : ${{ needs.Get-CI-Image-Tag.outputs.ci-image-version-linux }}
31
- # need to switch to root so that github actions can install runner binary on container without permission issues.
32
- options : --user root
31
+ options : ${{ needs.Get-CI-Image-Tag.outputs.ci-image-start-options }}
33
32
34
33
steps :
35
- - uses : actions/checkout@v3
34
+ - name : Run start commands
35
+ run : ${{ needs.Get-CI-Image-Tag.outputs.ci-image-start-command }}
36
+
37
+ - uses : actions/checkout@v4
36
38
37
39
- name : Set up JDK ${{ matrix.java }}
38
40
uses : actions/setup-java@v3
66
68
runs-on : ${{ matrix.os }}
67
69
68
70
steps :
69
- - uses : actions/checkout@v3
71
+ - uses : actions/checkout@v4
70
72
71
73
- name : Set up JDK ${{ matrix.java }}
72
74
uses : actions/setup-java@v3
You can’t perform that action at this time.
0 commit comments