Skip to content

Commit

Permalink
GitHub Actions: use Docker-distributed docker-compose-plugin instea…
Browse files Browse the repository at this point in the history
…d of Ubuntu-distributed `docker-compose-v2`
  • Loading branch information
jayaddison committed Aug 9, 2024
1 parent 9b42f77 commit 31d769a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
COVERALLS_GIT_BRANCH: ${{ github.ref }}
steps:
- run: sudo apt update
- run: sudo apt install -y docker-compose-v2
- run: sudo apt install -y docker-compose-plugin
- uses: actions/checkout@v4
- name: Build containers
run: docker compose -f ./docker-compose.yml -f ./docker-compose.ci.yml build --parallel
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- run: sudo apt update
- run: sudo apt install -y docker-compose-v2
- run: sudo apt install -y docker-compose-plugin
- uses: actions/checkout@v4
- name: Build containers
run: docker compose -f ./docker-compose.yml -f ./docker-compose.ci.yml build --parallel
Expand Down

0 comments on commit 31d769a

Please sign in to comment.