Skip to content

Commit

Permalink
Fix obsolete docker-compose command in CIs
Browse files Browse the repository at this point in the history
- This issue occurred because docker Compose v1 is now removed from
  images.
- Related links:
  actions/runner-images#9557
  https://github.com/orgs/community/discussions/116610
  • Loading branch information
MuhammadTahaNaveed committed Aug 6, 2024
1 parent ee1bb95 commit 2d85996
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go-driver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
working-directory: drivers/golang/age/

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Run apache/age docker image
run: docker-compose up -d
run: docker compose up -d

- name: Set up Go
uses: actions/setup-go@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/jdbc-driver.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
working-directory: drivers/jdbc

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Java
uses: actions/setup-java@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nodejs-driver.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
working-directory: drivers/nodejs/

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Run apache/age docker image
run: docker-compose up -d
run: docker compose up -d

- name: Set up Node
uses: actions/setup-node@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-driver.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
working-directory: drivers/python

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Run apache/age docker image
run: docker-compose up -d
run: docker compose up -d

- name: Set up python
uses: actions/setup-python@v4
Expand Down

0 comments on commit 2d85996

Please sign in to comment.