Skip to content

Commit cfde42f

Browse files
authored
Merge pull request #94 from tobiasehlert/patch-1
fix: replacing deprecated set-output to use env instead
2 parents ac2a6b5 + 18dc76d commit cfde42f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/docker-entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ fi
177177
set +e
178178
num_changed=$(git_status)
179179
set -e
180-
echo "::set-output name=num_changed::${num_changed}"
180+
echo "num_changed=${num_changed}" >> $GITHUB_OUTPUT
181181

182182
if [ "${INPUT_GIT_PUSH}" = "true" ]; then
183183
git_commit

0 commit comments

Comments
 (0)