Skip to content

Commit 8146404

Browse files
authored
Merge pull request #26 from WyriHaximus/switch-to-output-file
Use new way of outputting values from step/action
2 parents 439d646 + 44b1544 commit 8146404

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

versions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
}
2323

2424
echo 'Found the following supported versions: ', implode(', ', $versions), PHP_EOL;
25-
echo '::set-output name=versions::', json_encode($versions), PHP_EOL;
25+
file_put_contents(getenv('GITHUB_OUTPUT'), 'versions=' . json_encode($versions) . PHP_EOL, FILE_APPEND);

0 commit comments

Comments
 (0)