Skip to content

Commit

Permalink
fix(ephemeral-runner): Replace once with ephemeral
Browse files Browse the repository at this point in the history
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.
```
  • Loading branch information
MrKevinWeiss authored Jan 26, 2022
1 parent 20afe92 commit d46589c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ephemeral-runner.sh
Original file line number Diff line number Diff line change
@@ -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:
Expand Down

0 comments on commit d46589c

Please sign in to comment.