Skip to content

Commit

Permalink
chore: Lock test tool versions
Browse files Browse the repository at this point in the history
Since we're no longer in heavy development, it's probably best to lock
these down to have reproducible tests.
  • Loading branch information
tlater-famedly committed Aug 19, 2024
1 parent e0bc58d commit 8b8c520
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/environment/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
ldap:
image: bitnami/openldap:latest
image: bitnami/openldap:2.5.18
ports:
- 1389:1389
- 1636:1636
Expand Down Expand Up @@ -42,7 +42,7 @@ services:
condition: 'service_healthy'

zitadel:
image: ghcr.io/zitadel/zitadel:latest
image: ghcr.io/zitadel/zitadel:v2.58.3
command: start-from-init --masterkey "MasterkeyNeedsToHave32Characters" --tlsMode disabled --config /zitadel-config/zitadel-config.yaml --steps /zitadel-config/zitadel-init.yaml
ports:
- 8080:8080
Expand Down
4 changes: 2 additions & 2 deletions tests/environment/test-setup/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM bitnami/openldap:latest
FROM bitnami/openldap:2.5.18

USER root

Expand All @@ -9,4 +9,4 @@ RUN apt-get update && apt-get upgrade -y && \
apt-get install --yes -t bookworm-backports golang-go && \
apt-get clean && rm -rf /var/lib/apt/lists /var/cache/apt/archives

RUN GOPATH=/ go install github.com/zitadel/zitadel-tools@latest
RUN GOPATH=/ go install github.com/zitadel/zitadel-tools@v0.5.0

0 comments on commit 8b8c520

Please sign in to comment.