From d46589c2c909e3b667b153386dddbb38ec96acdf Mon Sep 17 00:00:00 2001 From: "Kevin \"Tristate Tom\" Weiss" Date: Wed, 26 Jan 2022 14:45:09 +0100 Subject: [PATCH] fix(ephemeral-runner): Replace once with ephemeral When running the `ephemeral-runner.sh` there is a deprecation warning. Better to solve it sooner than later... ``` Warning: '--once' is going to be deprecated in the future, please consider using '--ephemeral' during runner registration. ``` --- ephemeral-runner.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ephemeral-runner.sh b/ephemeral-runner.sh index 424349ba..156deb95 100644 --- a/ephemeral-runner.sh +++ b/ephemeral-runner.sh @@ -1,7 +1,7 @@ #!/bin/bash echo "*** Starting ephemeral runner. ***" -/actions-runner/run.sh --once +/actions-runner/run.sh --ephemeral rv=$? # See exit code constants in the runner source here: