Skip to content

Commit

Permalink
chore(deps): update postgres docker tag to v16 (#1703)
Browse files Browse the repository at this point in the history
* chore(deps): update postgres docker tag to v16

* fix(test-utils): align postgres docker image

---------

Co-authored-by: Amir Blum <amirgiraffe@gmail.com>
  • Loading branch information
renovate-bot and blumamir committed Apr 30, 2024
1 parent d066854 commit 59583f2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-all-versions.yml
Expand Up @@ -53,7 +53,7 @@ jobs:
--health-timeout 5s
--health-retries 5
postgres:
image: postgres:15-alpine
image: postgres:16-alpine
env:
POSTGRES_USER: postgres
POSTGRES_DB: otel_pg_database
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-test.yml
Expand Up @@ -51,7 +51,7 @@ jobs:
--health-timeout 5s
--health-retries 5
postgres:
image: postgres:15-alpine
image: postgres:16-alpine
env:
POSTGRES_USER: postgres
POSTGRES_DB: otel_pg_database
Expand Down
2 changes: 1 addition & 1 deletion packages/opentelemetry-test-utils/src/test-utils.ts
Expand Up @@ -40,7 +40,7 @@ const dockerRunCmds = {
mysql:
'docker run --rm -d --name otel-mysql -p 33306:3306 -e MYSQL_ROOT_PASSWORD=rootpw -e MYSQL_DATABASE=test_db -e MYSQL_USER=otel -e MYSQL_PASSWORD=secret mysql:5.7 --log_output=TABLE --general_log=ON',
postgres:
'docker run --rm -d --name otel-postgres -p 54320:5432 -e POSTGRES_PASSWORD=postgres postgres:15-alpine',
'docker run --rm -d --name otel-postgres -p 54320:5432 -e POSTGRES_PASSWORD=postgres postgres:16-alpine',
redis: 'docker run --rm -d --name otel-redis -p 63790:6379 redis:alpine',
};

Expand Down

0 comments on commit 59583f2

Please sign in to comment.