ci: switch to docker compose v2 (#5206)

This commit is contained in:
Kenneth Jenkins 2024-08-05 15:50:38 -07:00 committed by GitHub
parent fdefcf9a16
commit 41f1e61911
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View file

@ -44,7 +44,7 @@ jobs:
run: |
export POMERIUM_TAG=dev
cd ./integration/clusters/single-stateful
docker-compose up -d
docker compose up -d
- name: integration tests
run: |

View file

@ -43,11 +43,11 @@ jobs:
run: |
export POMERIUM_TAG=dev
cd ./integration/clusters/${{matrix.deployment}}-${{matrix.authenticate-flow}}
docker-compose up -d
docker compose up -d
- name: integration tests
run: |
(cd ./integration/clusters/${{matrix.deployment}}-${{matrix.authenticate-flow}} && docker-compose logs -f &)
(cd ./integration/clusters/${{matrix.deployment}}-${{matrix.authenticate-flow}} && docker compose logs -f &)
go test -v ./integration/...
build: