We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a873aad commit 34ebdadCopy full SHA for 34ebdad
action.yml
@@ -57,8 +57,8 @@ runs:
57
###
58
### Output matrix
59
60
- echo "::set-output name=matrix::[]"
61
- echo "::set-output name=has_refs::false"
+ echo "matrix=[]" >> $GITHUB_OUTPUT
+ echo "has_refs=false" >> $GITHUB_OUTPUT
62
echo "matrix=[]"
63
echo "has_refs=false"
64
else
@@ -121,7 +121,7 @@ runs:
121
122
### Set final output for 'matrix'
123
124
- echo "::set-output name=matrix::${JSON}"
+ echo "matrix=${JSON}" >> $GITHUB_OUTPUT
125
126
127
### Set 'has_refs'
@@ -131,7 +131,7 @@ runs:
131
132
HAS_REFS="true"
133
fi
134
- echo "::set-output name=has_refs::${HAS_REFS}"
+ echo "has_refs=${HAS_REFS}" >> $GITHUB_OUTPUT
135
136
137
0 commit comments