From d5b62a95309ec8c6b756c7b6facb8349c9ca6717 Mon Sep 17 00:00:00 2001 From: Martin Buchleitner Date: Wed, 14 Aug 2024 08:29:26 +0200 Subject: [PATCH] fix: test timeout as optional Signed-off-by: Martin Buchleitner --- .github/workflows/terratest.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/terratest.yml b/.github/workflows/terratest.yml index e1c182d..253a042 100644 --- a/.github/workflows/terratest.yml +++ b/.github/workflows/terratest.yml @@ -4,7 +4,7 @@ name: Analyze Terraform on: workflow_call: inputs: - tfdir: + sourceDir: description: 'Terraform directory to analyze' required: true default: '.' @@ -28,11 +28,11 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - - name: Check if ${{ inputs.tfdir }} changed + - name: Check if ${{ inputs.sourceDir }} changed id: detect uses: tj-actions/changed-files@v44 with: - path: ${{ inputs.tfdir }} + path: ${{ inputs.sourceDir }} - uses: actions/setup-go@v5