File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 55
55
echo "::error ::Unsupported cwlVersion: '${cwlVersion}'"
56
56
exit 1
57
57
fi
58
- echo "::set-output name= repo:: ${baseOwner}/${repo}"
58
+ echo "repo= ${baseOwner}/${repo}" >> $GITHUB_OUTPUT
59
59
env :
60
60
cwlVersion : ${{ inputs.cwlVersion }}
61
61
- uses : actions/checkout@v2
65
65
path : cwl-run-conformance-${{ inputs.cwlVersion }}
66
66
- name : Setup Python for testing
67
67
if : ${{ inputs.skip-python-install == 'false' }}
68
- uses : actions/setup-python@v2
68
+ uses : actions/setup-python@v4
69
69
with :
70
70
python-version : ' 3.9.x'
71
71
- name : Install cwltest
@@ -95,12 +95,12 @@ runs:
95
95
fi
96
96
97
97
./run_test.sh RUNNER=${{inputs.runner}} --badgedir=$basedir/badges --junit-xml=$basedir/junit.xml --timeout=${{inputs.timeout}} $tagopt $nopt "$extraopt" || true
98
- echo "::set-output name= badgedir:: $GITHUB_WORKSPACE/cwl-run-conformance-${{ inputs.cwlVersion }}/badges"
99
- echo "::set-output name= result:: $GITHUB_WORKSPACE/cwl-run-conformance-${{ inputs.cwlVersion }}/junit.xml"
98
+ echo "badgedir= $GITHUB_WORKSPACE/cwl-run-conformance-${{ inputs.cwlVersion }}/badges" >> $GITHUB_OUTPUT
99
+ echo "result= $GITHUB_WORKSPACE/cwl-run-conformance-${{ inputs.cwlVersion }}/junit.xml" >> $GITHUB_OUTPUT
100
100
env :
101
101
cwlVersion :
102
102
- name : Publish the result of conformance tests
103
- uses : EnricoMi/publish-unit-test-result-action@v1
103
+ uses : EnricoMi/publish-unit-test-result-action@v2
104
104
with :
105
- files : ${{ github.workspace }}/cwl-run-conformance-${{ inputs.cwlVersion }}/junit.xml
105
+ junit_files : ${{ github.workspace }}/cwl-run-conformance-${{ inputs.cwlVersion }}/junit.xml
106
106
check_name : The result of conformance tests for CWL ${{ inputs.cwlVersion }}
You can’t perform that action at this time.
0 commit comments