From 87393f507139b2e51e324fa4f0c00a5ec9b4ab63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Mei=C3=9Fner?= Date: Sat, 11 Jan 2025 13:47:49 +0100 Subject: [PATCH] Fix issues with starting docker-compose in CI * upgrade `docker-compose` before run phpipam-action * pin python to version 3.9 as long we did not found time to test newer versions --- .github/workflows/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 23ea58f..95e411a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,6 +10,8 @@ jobs: matrix: phpipam-version: ['v1.4x', 'v1.5x'] steps: + - name: Upgrade docker-compose + run: sudo apt-get install --upgrade docker-compose - uses: actions/checkout@v3 - name: setup phpipam uses: codeaffen/phpipam-action@v2 @@ -18,7 +20,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v3 with: - python-version: '3.x' + python-version: '3.9' - name: setup test environment run: | make test-setup