Skip to content

Commit 5fa41e2

Browse files
authored
Fix typo in setup-linux action
If wikipedia can still be used as source of truth it should be spelled as https://en.wikipedia.org/wiki/Daemon_(computing)
1 parent 83007f7 commit 5fa41e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/actions/setup-linux/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ runs:
2525
id: check_container_runner
2626
run: echo "IN_CONTAINER_RUNNER=$(if [ -f /.inarc ] || [ -f /.incontainer ]; then echo true ; else echo false; fi)" >> "$GITHUB_OUTPUT"
2727

28-
- name: Start docker if docker deamon is not running
28+
- name: Start docker if docker daemon is not running
2929
shell: bash
3030
if: ${{ steps.check_container_runner.outputs.IN_CONTAINER_RUNNER == 'false' }}
3131
run: |
3232
if ! docker version >/dev/null 2>/dev/null; then
3333
if systemctl is-active --quiet docker; then
3434
echo "Docker daemon is running...";
3535
else
36-
echo "Starting docker deamon..." && sudo systemctl start docker;
36+
echo "Starting docker daemon..." && sudo systemctl start docker;
3737
fi
3838
fi
3939

0 commit comments

Comments
 (0)