Skip to content

Commit 31c4134

Browse files
nsa-softpayclaude
andcommitted
Fix CI integration tests by migrating to docker compose v2
The standalone `docker-compose` (v1) binary is no longer installed on GitHub Actions ubuntu-latest runners. Use the `docker compose` plugin subcommand instead. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 98d79f0 commit 31c4134

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ jobs:
4747
- name: Integration Test
4848
id: integration-test
4949
run: |
50-
docker-compose -f docker-compose.ci.yaml build sut
51-
docker-compose -f docker-compose.ci.yaml up --exit-code-from sut
52-
docker-compose -f docker-compose.ci.yaml rm --stop --force
50+
docker compose -f docker-compose.ci.yaml build sut
51+
docker compose -f docker-compose.ci.yaml up --exit-code-from sut
52+
docker compose -f docker-compose.ci.yaml rm --stop --force
5353
- uses: act10ns/slack@v2
5454
with:
5555
status: ${{ job.status }}

0 commit comments

Comments
 (0)