File tree 1 file changed +7
-5
lines changed
1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ on: [push, pull_request]
6
6
jobs :
7
7
Get-CI-Image-Tag :
8
8
uses : ./.github/workflows/get-ci-image-tag.yml
9
+ with :
10
+ product : opensearch
9
11
10
12
python-tests :
11
13
strategy :
17
19
env :
18
20
PYTHON_VERSION : 3.9
19
21
steps :
20
- - uses : actions/checkout@v3
22
+ - uses : actions/checkout@v4
21
23
- name : Set up Python ${{ env.PYTHON_VERSION }}
22
24
uses : actions/setup-python@v3
23
25
with :
@@ -46,17 +48,17 @@ jobs:
46
48
python-tests-linux :
47
49
needs : Get-CI-Image-Tag
48
50
runs-on : ubuntu-latest
49
- env :
50
- ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION : true
51
51
container :
52
52
# using the same image which is used by opensearch-build team to build the OpenSearch Distribution
53
53
# this image tag is subject to change as more dependencies and updates will arrive over time
54
54
image : ${{ needs.Get-CI-Image-Tag.outputs.ci-image-version-linux }}
55
55
# need to switch to root so that github actions can install runner binary on container without permission issues.
56
- options : --user root
56
+ options : ${{ needs.Get-CI-Image-Tag.outputs.ci-image-start-options }}
57
57
58
58
steps :
59
- - uses : actions/checkout@v3
59
+ - name : Run start commands
60
+ run : ${{ needs.Get-CI-Image-Tag.outputs.ci-image-start-command }}
61
+ - uses : actions/checkout@v4
60
62
- name : Install Pipenv and Dependencies
61
63
run : |
62
64
pipenv install
You can’t perform that action at this time.
0 commit comments