docs to download latest version

This commit is contained in:
CrazyMax 2025-01-27 12:33:41 +01:00
parent 55fa65fc8b
commit db9182ec53
No known key found for this signature in database
GPG Key ID: ADE44D8C9D44FBE4

View File

@ -30,11 +30,23 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- -
name: Checkout name: Set up Docker Compose
uses: actions/checkout@v4 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 name: Set up Docker Compose
uses: docker/setup-compose-action@v1 uses: docker/setup-compose-action@v1
with:
version: latest
``` ```
## Customizing ## Customizing