Skip to content

Commit fe1f92a

Browse files
🩹 [CI]: Update default working directory in workflows to current directory for consistency
1 parent 70bb8f9 commit fe1f92a

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

‎.github/workflows/Build-Docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ on:
3131
type: string
3232
description: The working directory where the script will run from.
3333
required: false
34-
default: ${{ github.workspace }}
34+
default: '.'
3535

3636
permissions:
3737
contents: read # to checkout the repo

‎.github/workflows/Build-Module.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ on:
3131
type: string
3232
description: The working directory where the script will run from.
3333
required: false
34-
default: ${{ github.workspace }}
34+
default: '.'
3535

3636
permissions:
3737
contents: read # to checkout the repository

‎.github/workflows/Get-CodeCoverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ on:
2727
type: string
2828
description: The working directory where the script will run from.
2929
required: false
30-
default: ${{ github.workspace }}
30+
default: '.'
3131

3232
permissions:
3333
contents: read # to checkout the repo

‎.github/workflows/Get-TestResults.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ on:
2727
type: string
2828
description: The working directory where the script will run from.
2929
required: false
30-
default: ${{ github.workspace }}
30+
default: '.'
3131

3232
permissions:
3333
contents: read # to checkout the repo

‎.github/workflows/Get-TestSuites.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ on:
2727
type: string
2828
description: The working directory where the script will run from.
2929
required: false
30-
default: ${{ github.workspace }}
30+
default: '.'
3131

3232
outputs:
3333
TestSuites:

‎.github/workflows/Test-Module.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ on:
6666
type: string
6767
description: The working directory where the script will run from.
6868
required: false
69-
default: ${{ github.workspace }}
69+
default: '.'
7070

7171
env:
7272
TEST_APP_ENT_CLIENT_ID: ${{ secrets.TEST_APP_ENT_CLIENT_ID }}

‎.github/workflows/Test-ModuleLocal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ on:
7676
type: string
7777
description: The working directory where the script will run from.
7878
required: false
79-
default: ${{ github.workspace }}
79+
default: '.'
8080

8181
env:
8282
TEST_APP_ENT_CLIENT_ID: ${{ secrets.TEST_APP_ENT_CLIENT_ID }}

‎.github/workflows/Test-SourceCode.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ on:
4444
type: string
4545
description: The working directory where the script will run from.
4646
required: false
47-
default: ${{ github.workspace }}
47+
default: '.'
4848

4949
permissions:
5050
contents: read # to checkout the repo and create releases on the repo

0 commit comments

Comments
 (0)