diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml index 370f1d20..f00ef3d6 100644 --- a/.github/workflows/go-test.yml +++ b/.github/workflows/go-test.yml @@ -89,7 +89,7 @@ jobs: runs-on: ubuntu-latest services: postgres: - image: postgres:16 + image: postgres:18 env: POSTGRES_USER: dawgs POSTGRES_PASSWORD: weneedbetterpasswords diff --git a/.gitignore b/.gitignore index b3e5e211..3657fb4a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ *.iml +.DS_Store # User IDE Files .idea diff --git a/docker-compose.yml b/docker-compose.yml index 933c0639..2637e748 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,6 +1,6 @@ services: postgres: - image: postgres:16 + image: postgres:18 environment: POSTGRES_USER: dawgs POSTGRES_PASSWORD: weneedbetterpasswords @@ -8,7 +8,7 @@ services: ports: - "65432:5432" volumes: - - pg_data:/var/lib/postgresql/data + - pg_data:/var/lib/postgresql neo4j: image: neo4j:4.4.42