Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
python-version: "3.9"

- name: Install poetry
uses: abatilo/actions-poetry@v2
uses: abatilo/actions-poetry@v4
with:
poetry-version: "1.3"
poetry-version: "2.2"

- name: Install poetry dependencies
run: poetry install --no-interaction --no-root
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.7"
services:
postgres:
container_name: blackbox-postgres
image: postgres:16
image: postgres:18
environment:
POSTGRES_USER: blackbox
POSTGRES_PASSWORD: blackbox
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ EOF
# Install redis-tools, used for redis backups.
RUN apt install -y redis-tools

# Install the Postgres 16 client, needed for pg_dumpall
# Install the Postgres 18 client, needed for pg_dumpall
# And MariaDB client for mysqldump
RUN sh -c 'echo "deb http://apt.postgresql.org/pub/repos/apt $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list'
RUN wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -
RUN apt-get update -y && \
apt-get install -y postgresql-client-16 mariadb-client
apt-get install -y postgresql-client-18 mariadb-client

# Create and set the working directory, so we don't make a mess in the Docker filesystem.
WORKDIR /blackbox
Expand Down
Loading
Loading