Skip to content

Commit 8c9ed6f

Browse files
committed
Switch to filebased outputs
1 parent d5385d1 commit 8c9ed6f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ jobs:
121121
uses: ./
122122
with:
123123
ignoreActions: "test-docker-image,Create Release,Wait for status checks"
124-
checkInterval: 1
124+
checkInterval: 30
125125
env:
126126
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
127127
- name: "Assert Output: status is successful"

wait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,6 @@
4747
...$shas,
4848
)->then(function (string $state) use($logger) {
4949
$logger->info('Final status: ' . $state);
50-
echo PHP_EOL, '::set-output name=status::' . $state, PHP_EOL;
50+
file_put_contents(getenv('GITHUB_OUTPUT'), 'status=' . $state . "\n", FILE_APPEND);
5151
})->done();
5252
})();

0 commit comments

Comments
 (0)