From db9182ec53f14ab0c83fe961334eef06d603adbc Mon Sep 17 00:00:00 2001 From: CrazyMax <1951866+crazy-max@users.noreply.github.com> Date: Mon, 27 Jan 2025 12:33:41 +0100 Subject: [PATCH] docs to download latest version --- README.md | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 14b9236..b33faa2 100644 --- a/README.md +++ b/README.md @@ -30,11 +30,23 @@ jobs: runs-on: ubuntu-latest steps: - - name: Checkout - uses: actions/checkout@v4 + name: Set up Docker Compose + uses: docker/setup-compose-action@v1 +``` + +> [!NOTE] +> If Docker Compose is already installed on the runner, the action will skip +> download. Otherwise, it will download and install the latest stable version +> [available on GitHub](https://github.com/docker/compose/releases/latest). + +To always download and install the latest version of Docker Compose: + +```yaml - name: Set up Docker Compose uses: docker/setup-compose-action@v1 + with: + version: latest ``` ## Customizing