@@ -440,7 +440,8 @@ jobs:
440
440
poetry export --without-hashes --dev -o requirements_dev.txt
441
441
fi
442
442
if [ ! -f requirements_dev.txt ]; then echo no requirements;exit 0 ;fi
443
- git config --global url."https://${{ secrets.GH_TOKEN_ADMIN }}@github.com".insteadOf https://github.com
443
+ git config --global --add url."https://${{ secrets.GH_TOKEN_ADMIN }}@github.com".insteadOf https://github.com
444
+ git config --global --add url."https://${{ secrets.GH_TOKEN_ADMIN }}@github.com".insteadOf ssh://git@github.com
444
445
pip install -r requirements_dev.txt
445
446
- name : Create directories
446
447
run : |
@@ -489,7 +490,8 @@ jobs:
489
490
poetry export --without-hashes --dev -o requirements_dev.txt
490
491
fi
491
492
if [ ! -f requirements_dev.txt ]; then echo no requirements;exit 0 ;fi
492
- git config --global url."https://${{ secrets.GH_TOKEN_ADMIN }}@github.com".insteadOf https://github.com
493
+ git config --global --add url."https://${{ secrets.GH_TOKEN_ADMIN }}@github.com".insteadOf https://github.com
494
+ git config --global --add url."https://${{ secrets.GH_TOKEN_ADMIN }}@github.com".insteadOf ssh://git@github.com
493
495
pip install -r requirements_dev.txt
494
496
- name : Create directories
495
497
run : |
@@ -571,7 +573,8 @@ jobs:
571
573
- name : Install deps
572
574
if : ${{ steps.checklibs.outputs.ENABLED == 'true' }}
573
575
run : |
574
- git config --global url."https://${{ secrets.GH_TOKEN_ADMIN }}@github.com".insteadOf https://github.com
576
+ git config --global --add url."https://${{ secrets.GH_TOKEN_ADMIN }}@github.com".insteadOf https://github.com
577
+ git config --global --add url."https://${{ secrets.GH_TOKEN_ADMIN }}@github.com".insteadOf ssh://git@github.com
575
578
pip install -r requirements_dev.txt
576
579
- name : Semantic Release Get Next
577
580
id : semantic
@@ -620,7 +623,7 @@ jobs:
620
623
uses : actions/upload-artifact@v3
621
624
with :
622
625
name : artifact-openapi
623
- path : ${{ github.workspace }}/${{ steps.uccgen.outputs.OUTPUT }}/static/openapi.json
626
+ path : ${{ github.workspace }}/${{ steps.uccgen.outputs.OUTPUT }}/appserver/ static/openapi.json
624
627
if : ${{ !cancelled() && needs.test-inventory.outputs.ucc_modinput_functional == 'true' && needs.test-inventory.outputs.modinput_functional == 'true' }}
625
628
- name : artifact-splunk-base
626
629
uses : actions/upload-artifact@v3
@@ -703,7 +706,8 @@ jobs:
703
706
restore-keys : |
704
707
${{ runner.os }}-pip-python3_9
705
708
- run : |
706
- git config --global url."https://${{ secrets.GH_TOKEN_ADMIN }}@github.com".insteadOf https://github.com
709
+ git config --global --add url."https://${{ secrets.GH_TOKEN_ADMIN }}@github.com".insteadOf https://github.com
710
+ git config --global --add url."https://${{ secrets.GH_TOKEN_ADMIN }}@github.com".insteadOf ssh://git@github.com
707
711
pip install -r requirements_dev.txt
708
712
- id : semantic
709
713
if : github.event_name != 'pull_request'
@@ -781,7 +785,7 @@ jobs:
781
785
name : package-splunkbase
782
786
path : build/package/
783
787
- name : Scan
784
- uses : splunk/appinspect-cli-action@v2.0
788
+ uses : splunk/appinspect-cli-action@v2.2
785
789
with :
786
790
app_path : build/package/
787
791
included_tags : ${{ matrix.tags }}
0 commit comments