Skip to content

Commit 182013e

Browse files
authored
Update MSSQL smoke test (#2792)
This PR removes the SA_PASSWORD hard coded environment variable from the MSSQL smoke test. Instead, a password for the SQL server is set as a repository secret.
1 parent 9a5ce36 commit 182013e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/smoketest-mssql-inproc-v4.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,20 @@ on:
77
paths:
88
- 'src/**'
99
- 'test/SmokeTests/BackendSmokeTests/MSSQL/**'
10+
- '.github/workflows/smoketest-mssql-inproc-v4.yml'
1011
pull_request:
1112
branches: [ main, dev ]
1213
paths:
1314
- 'src/**'
1415
- 'test/SmokeTests/BackendSmokeTests/MSSQL/**'
16+
- '.github/workflows/smoketest-mssql-inproc-v4.yml'
1517

1618
jobs:
1719
build:
1820

1921
runs-on: ubuntu-latest
2022
env:
21-
SA_PASSWORD: NotASecret!12
23+
SA_PASSWORD: ${{ secrets.SA_PASSWORD }}
2224

2325
steps:
2426
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)