From 8a2ca0ce78fbe7564abb37c0c0d92ddd6f4d46e0 Mon Sep 17 00:00:00 2001 From: sedat4ras Date: Tue, 24 Mar 2026 02:43:29 +1100 Subject: [PATCH] docs: clarify that v3 major tag doesn't exist, minor version tags do (#2790) --- docs/faq.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/faq.md b/docs/faq.md index 25198231..a241a13a 100644 --- a/docs/faq.md +++ b/docs/faq.md @@ -130,6 +130,9 @@ uses: pypa/cibuildwheel@v3.4.0 This is a composite step that just runs cibuildwheel using pipx. You can set command-line options as `with:` parameters, and use `env:` as normal. +!!! note "Minor version tags" + Unlike some GitHub Actions, cibuildwheel does **not** provide a floating `@v3` major-version tag, since our minor version change can add/remove wheels. You can, however, pin to a minor version such as `@v3.4` to automatically receive patch releases within that minor version. Dependabot (shown below) is the recommended way to stay up to date. + Then, your `.github/dependabot.yml` file could look like this: ```yaml