Skip to content

Commit 8d26e67

Browse files
author
Nick Craver
committed
Tweaks!
1 parent 3707223 commit 8d26e67

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- 1433/tcp
3030
env:
3131
ACCEPT_EULA: Y
32-
SA_PASSWORD: g0d4mm!tSQLServer
32+
SA_PASSWORD: "Password."
3333
mysql:
3434
image: mysql
3535
ports:
@@ -47,8 +47,8 @@ jobs:
4747
env:
4848
EnableTestLogging: true
4949
MySQLConnectionString: server=localhost;Port=${{ job.services.mysql.ports[3306] }};Uid=root;Pwd=root;Database=test;Allow User Variables=true
50-
OLEDBConnectionString: Provider=SQLOLEDB;Server=tcp:127.0.0.1,${{ job.services.sqlserver.ports[1433] }};Database=tempdb;User Id=sa;Password=saAccountI#v3rySecure;
50+
OLEDBConnectionString: Provider=SQLOLEDB;Server=localhost,${{ job.services.sqlserver.ports[1433] }};Database=tempdb;User Id=sa;Password=Password.;
5151
PostgreSqlConnectionString: Server=localhost;Port=${{ job.services.postgres.ports[5432] }};Database=test;User Id=postgres;Password=postgres;
52-
SQLServerConnectionString: Server=tcp:127.0.0.1,${{ job.services.sqlserver.ports[1433] }};Database=tempdb;User Id=sa;Password=saAccountI#v3rySecure;
52+
SQLServerConnectionString: Server=localhost,${{ job.services.sqlserver.ports[1433] }};Database=tempdb;User Id=sa;Password=Password.;
5353
- name: .NET Lib Pack
5454
run: dotnet pack Build.csproj --no-build -c Release /p:PackageOutputPath=%CD%\.nupkgs /p:CI=true

tests/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ services:
2424
- 1433:1433
2525
environment:
2626
ACCEPT_EULA: Y
27-
SA_PASSWORD: "saAccountI#v3rySecure"
27+
SA_PASSWORD: "Password."

0 commit comments

Comments
 (0)