Skip to content

Commit

Permalink
chore(deps): 📝 update psql
Browse files Browse the repository at this point in the history
  • Loading branch information
IgorPolyakov committed Aug 12, 2024
1 parent 70457f2 commit fe4ec04
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:16.3
image: postgres:16.4
env:
POSTGRES_DB: ctf01d_training_platform_test
POSTGRES_USER: postgres
Expand Down
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"conventionalCommits.scopes": [
"config",
"api",
"test"
"test",
"deps"
]
}
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ run-db:
-e POSTGRES_USER=postgres \
-e POSTGRES_PASSWORD=postgres \
-e PGPORT=4112 \
-p 4112:4112 postgres:16.3; \
-p 4112:4112 postgres:16.4; \
fi

# Stop PostgreSQL container
Expand Down
2 changes: 1 addition & 1 deletion build/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ services:
- ctf01d_net

ctf_training_platform_db:
image: postgres:16.3
image: postgres:16.4
restart: always
environment:
POSTGRES_USER: postgres
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "2"

services:
ctf_training_platform_db:
image: postgres:16.3
image: postgres:16.4
restart: always
environment:
POSTGRES_USER: postgres
Expand Down

0 comments on commit fe4ec04

Please sign in to comment.