Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ The recommended formats explicitly define which versions are used for all direct
{%- ifversion github-actions-in-dependency-graph %}
| {% data variables.product.prodname_actions %} workflows [1] | YAML | `.yml`, `.yaml` | `.yml`, `.yaml` |
{%- endif %}
| Go modules | Go | `go.sum` | `go.mod`, `go.sum` |
| Go modules | Go | `go.mod`| `go.mod`{% ifversion ghes < 3.9 or ghae < 3.9 %}, `go.sum`{% endif %} |
| Maven | Java, Scala | `pom.xml` | `pom.xml` |
| npm | JavaScript | `package-lock.json` | `package-lock.json`, `package.json`|
| pip | Python | `requirements.txt`, `pipfile.lock` | `requirements.txt`, `pipfile`, `pipfile.lock`, `setup.py`[2] |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ The table below summarizes whether dependency scope is supported for various eco
|:---|:---:|:---:|:---|{% ifversion dependency-graph-dart-support %}
| Dart | pub | pubspec.yaml | ✔ |
| Dart | pub | pubspec.lock | ✔ |{% endif %}
| Go | Go modules | go.mod | No, defaults to runtime |
| Go | Go modules | go.sum | No, defaults to runtime |
| Go | Go modules | go.mod | No, defaults to runtime |{% ifversion ghes < 3.9 or ghae < 3.9 %}
| Go | Go modules | go.sum | No, defaults to runtime |{% endif %}
| Java | Maven | pom.xml | ✔ `test` maps to development, else scope defaults to runtime |
| JavaScript | npm | package.json | ✔ |
| JavaScript | npm | package-lock.json | ✔ |
Expand Down