Skip to content

Commit 16d9670

Browse files
ci: Replace Docker Compose action with manual installation
This commit modifies the `ci.yml` workflow to manually install the Docker Compose plugin using `apt-get`. This replaces the `docker/compose-action` and provides more direct control over the installed version. The new step updates the package list and installs `docker-compose-plugin`, ensuring that the `docker-compose` command is available for subsequent build and test steps.
1 parent f7fbd15 commit 16d9670

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,11 @@ jobs:
5353
echo "ANTIFRAUD_EXTERNAL_PORT=8081" >> .env
5454
echo "ANTIFRAUD_CACHE_MS=1000" >> .env
5555
56-
- name: Set up Docker Buildx & Compose
57-
uses: docker/compose-action@v2
56+
- name: Install Docker Compose v1
57+
run: |
58+
sudo apt-get update
59+
sudo apt-get install -y docker-compose-plugin
60+
docker-compose version
5861
5962
- name: Build and run Docker containers
6063
run: docker-compose up -d --build

0 commit comments

Comments
 (0)