Skip to content

Commit

Permalink
Stop using smartlyio/docker-compose-action (#257)
Browse files Browse the repository at this point in the history
As of right now, there is no way to use
Docker Compose v2 with smartlyio/docker-compose-action.
Docker Compose v1 has been deprecated and use of v1
is causing compatability issues with ARC infra.

b/280495066
b/278624932
  • Loading branch information
isarkis authored May 5, 2023
1 parent eff5367 commit 50ff67a
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/actions/docker/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,12 @@ runs:
- name: Build containers with docker-compose
id: build-image
if: env.need_to_build == 'true'
uses: smartlyio/docker-compose-action@83392e28664cc0cb5b3208e8d75697d01da8db18 # v1.7.1
with:
serviceName: ${{ inputs.docker_service }}
build: false
push: "on:push"
composeArguments: "--no-start"
composeFile: "docker-compose.yml"
env:
SERVICE: ${{inputs.docker_service}}
shell: bash
run: |
set -xue
DOCKER_BUILDKIT=0 docker compose -f docker-compose.yml up --build --no-start "${SERVICE}"
- name: Tag images
id: tag-images
if: env.need_to_build == 'true'
Expand Down

0 comments on commit 50ff67a

Please sign in to comment.