Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps-dev): bump the minor-development-deps group with 4 updates #243

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/integration-c.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
- uses: actions/checkout@v4

- name: Run tests
run: docker-compose run integration_c
run: docker compose run integration_c

- name: Cleanup
if: always()
run: docker-compose down
run: docker compose down
4 changes: 2 additions & 2 deletions .github/workflows/integration-csharp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
- uses: actions/checkout@v4

- name: Run tests
run: docker-compose run integration_csharp
run: docker compose run integration_csharp

- name: Cleanup
if: always()
run: docker-compose down
run: docker compose down
4 changes: 2 additions & 2 deletions .github/workflows/integration-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
- uses: actions/checkout@v4

- name: Run tests
run: docker-compose run integration_golang
run: docker compose run integration_golang

- name: Cleanup
if: always()
run: docker-compose down
run: docker compose down
4 changes: 2 additions & 2 deletions .github/workflows/integration-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
- uses: actions/checkout@v4

- name: Run tests
run: docker-compose run integration_node
run: docker compose run integration_node

- name: Cleanup
if: always()
run: docker-compose down
run: docker compose down
4 changes: 2 additions & 2 deletions .github/workflows/integration-php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
- uses: actions/checkout@v4

- name: Run tests
run: docker-compose run integration_php
run: docker compose run integration_php

- name: Cleanup
if: always()
run: docker-compose down
run: docker compose down
4 changes: 2 additions & 2 deletions .github/workflows/integration-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
- uses: actions/checkout@v4

- name: Run tests
run: docker-compose run integration_python
run: docker compose run integration_python

- name: Cleanup
if: always()
run: docker-compose down
run: docker compose down
4 changes: 2 additions & 2 deletions .github/workflows/integration-shell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
- uses: actions/checkout@v4

- name: Run tests
run: docker-compose run integration_shell
run: docker compose run integration_shell

- name: Cleanup
if: always()
run: docker-compose down
run: docker compose down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ services:
- HTTPS_KEY_FILE=/https-cert/httpbin.org-key.pem
networks:
default:
# on the docker-compose network, this proxy will be aliased as
# on the `docker compose` network, this proxy will be aliased as
# httpbin.org. To make this work with HTTPS, each integration test
# container needs to install the root CA contained in
# ./integrations/https-cert/rootCA.pem
Expand Down
Loading