Skip to content

Commit da3be36

Browse files
committed
Update oracle test image
1 parent 506a993 commit da3be36

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
ports:
3434
- "1433:1433"
3535
oracle:
36-
image: gvenzl/oracle-xe:21-slim-faststart
36+
image: gvenzl/oracle-free:23-slim-faststart
3737
env:
3838
ORACLE_PASSWORD: ${{ env.TEST_DB_PASS }}
3939
ports:

tests/Repositories.Oracle.Tests/DatabaseFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public DatabaseFixture()
1212
{
1313
Db = new TestDbContext(
1414
new OracleConnection(
15-
$"DATA SOURCE=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=XEPDB1)));User Id=system;Password={DotEnv.GetTestDbPass()}"),
15+
$"DATA SOURCE=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=FREEPDB1)));User Id=system;Password={DotEnv.GetTestDbPass()}"),
1616
SqlProvider.Oracle);
1717
ClearDb();
1818
InitDb();

tests/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ services:
1313
ports:
1414
- "1433:1433"
1515
oracle:
16-
image: gvenzl/oracle-xe:21-slim-faststart
16+
image: gvenzl/oracle-free:23-slim-faststart
1717
environment:
1818
ORACLE_PASSWORD: ${TEST_DB_PASS}
1919
ports:

0 commit comments

Comments
 (0)