Skip to content

Commit 6eefd78

Browse files
committed
chore(testing-shared): Bump default PostgreSQL image to 12.22
1 parent ad4e8e3 commit 6eefd78

File tree

1 file changed

+1
-1
lines changed
  • packages/cubejs-testing-shared/src/db-container-runners

1 file changed

+1
-1
lines changed

packages/cubejs-testing-shared/src/db-container-runners/postgres.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { DbRunnerAbstract, DBRunnerContainerOptions } from './db-runner.abstract
55

66
export class PostgresDBRunner extends DbRunnerAbstract {
77
public static startContainer(options: DBRunnerContainerOptions) {
8-
const version = process.env.TEST_PGSQL_VERSION || options.version || '9.6.8';
8+
const version = process.env.TEST_PGSQL_VERSION || options.version || '12.22';
99

1010
const container = new GenericContainer(`postgres:${version}`)
1111
.withEnvironment({

0 commit comments

Comments
 (0)