Skip to content

Commit 5b3b77d

Browse files
committed
ci: Drop default for inputs.command in run-in-docker-action
This change decreases coupling.
1 parent c0b84a3 commit 5b3b77d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/actions/run-in-docker-action/action.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ inputs:
1010
default: ${{ runner.arch }}
1111
command:
1212
description: 'A command to run in a container'
13-
required: false
14-
default: ./ci/ci.sh
13+
required: true
1514
runs:
1615
using: "composite"
1716
steps:

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ jobs:
117117
uses: ./.github/actions/run-in-docker-action
118118
with:
119119
dockerfile: ./ci/linux-debian.Dockerfile
120+
command: ./ci/ci.sh
120121

121122
- &PRINT_LOGS
122123
name: Print logs

0 commit comments

Comments
 (0)