From a252aefe1b92eedfddd1223ced5711d309a570f9 Mon Sep 17 00:00:00 2001 From: Mark Allen Date: Tue, 16 Sep 2025 15:03:51 +0000 Subject: [PATCH] Add Conda support details to Dependabot documentation (#57455) Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: mchammer01 <42146119+mchammer01@users.noreply.github.com> --- .../dependabot-options-reference.md | 3 +++ data/features/dependabot-conda-support.yml | 6 ++++++ .../dependabot/supported-package-managers.md | 11 +++++++++++ 3 files changed, 20 insertions(+) create mode 100644 data/features/dependabot-conda-support.yml diff --git a/content/code-security/dependabot/working-with-dependabot/dependabot-options-reference.md b/content/code-security/dependabot/working-with-dependabot/dependabot-options-reference.md index a33a2736ba24..ca2ac22734d7 100644 --- a/content/code-security/dependabot/working-with-dependabot/dependabot-options-reference.md +++ b/content/code-security/dependabot/working-with-dependabot/dependabot-options-reference.md @@ -477,6 +477,9 @@ Package manager | YAML value | Supported versions | | Bundler | `bundler` | {% ifversion ghes < 3.15 %}v1, {% endif %}v2 | | Cargo | `cargo` | v1 | | Composer | `composer` | v2 | +| {% ifversion dependabot-conda-support %} | +| Conda | `conda` | Not applicable | +| {% endif %} | | Dev containers | `devcontainers` | Not applicable | | Docker | `docker` | v1 | | {% ifversion dependabot-docker-compose-support %} | diff --git a/data/features/dependabot-conda-support.yml b/data/features/dependabot-conda-support.yml new file mode 100644 index 000000000000..0b208831beb4 --- /dev/null +++ b/data/features/dependabot-conda-support.yml @@ -0,0 +1,6 @@ +# Reference: #16918 +# Conda support for Dependabot +versions: + fpt: '*' + ghec: '*' + ghes: '> 3.19' diff --git a/data/reusables/dependabot/supported-package-managers.md b/data/reusables/dependabot/supported-package-managers.md index fafa22cceb3a..4bd5275c6c80 100644 --- a/data/reusables/dependabot/supported-package-managers.md +++ b/data/reusables/dependabot/supported-package-managers.md @@ -8,6 +8,9 @@ Package manager | YAML value | Supported versions | Version updates | Secur Bundler | `bundler` | {% ifversion ghes < 3.15 %}v1, {% endif %}v2 | {% octicon "check" aria-label="Supported" %}| {% octicon "check" aria-label="Supported" %} | {% octicon "check" aria-label="Supported" %} | {% octicon "check" aria-label="Supported" %} | {% octicon "check" aria-label="Supported" %} | [Cargo](#cargo) | `cargo` | v1 | {% octicon "check" aria-label="Supported" %} | {% octicon "check" aria-label="Supported" %} | {% octicon "check" aria-label="Supported" %} | {% octicon "check" aria-label="Supported" %} | {% octicon "x" aria-label="Not supported" %} | Composer | `composer` | {% ifversion dependabot-updates-composerv1-closing-down %}v2{% else %}v1, v2{% endif %} | {% octicon "check" aria-label="Supported" %} | {% octicon "check" aria-label="Supported" %} | {% octicon "check" aria-label="Supported" %} | {% octicon "check" aria-label="Supported" %} | {% octicon "x" aria-label="Not supported" %} | +| {% ifversion dependabot-conda-support %} | +[Conda](#conda) | `conda` | Not applicable | {% octicon "check" aria-label="Supported" %} | {% octicon "check" aria-label="Supported" %} | {% octicon "x" aria-label="Not supported" %} | {% octicon "x" aria-label="Not supported" %} | {% octicon "x" aria-label="Not supported" %} | +| {% endif %} | [Dev containers](#dev-containers) | `devcontainers` | Not applicable | {% octicon "check" aria-label="Supported" %} | {% octicon "x" aria-label="Not supported" %} | {% octicon "x" aria-label="Not supported" %} | {% octicon "x" aria-label="Not supported" %} | {% octicon "x" aria-label="Not supported" %} | [Docker](#docker) | `docker` | v1 | {% octicon "check" aria-label="Supported" %} | {% octicon "x" aria-label="Not supported" %} | {% octicon "check" aria-label="Supported" %} | {% octicon "check" aria-label="Supported" %} | Not applicable | | {% ifversion dependabot-docker-compose-support %} | @@ -60,6 +63,14 @@ For further information about ecosystem support for {% data variables.product.pr Private registry support includes cargo registries, so you can use {% data variables.product.prodname_dependabot %} to keep your Rust dependencies up-to-date. For more information, see [AUTOTITLE](/code-security/dependabot/working-with-dependabot/guidance-for-the-configuration-of-private-registries-for-dependabot#cargo). +{% ifversion dependabot-conda-support %} + +#### Conda + +{% data variables.product.prodname_dependabot %} support for Conda does **not include private registries, vendoring, or lock file updates**. + +{% endif %} + #### Dev containers You can use `devcontainers` as a `package-ecosystem` in your `dependabot.yml` file to update Features in your `devcontainer.json` configuration files. For more information about this support, and for configuration file examples, see [General Availability of {% data variables.product.prodname_dependabot %} Integration](https://containers.dev/guide/dependabot) in the Development Containers documentation.