| title | Automatic dependency submission | ||
|---|---|---|---|
| intro | Network access requirements, troubleshooting, and ecosystem-specific behavior for automatic dependency submission. | ||
| versions |
|
||
| contentType | reference | ||
| category |
|
If your self-hosted runners operate behind a firewall with restricted outbound internet access, you must add certain URLs to the allowlist for automatic dependency submission. The required URLs depend on the ecosystems your repositories use.
These URLs are required for all automatic dependency submission workflows:
https://github.com—Required for accessing {% data variables.product.github %} and downloading actions.https://api.github.com—Required for {% data variables.product.github %} API access.https://*.githubusercontent.com—Required for downloading action source code and releases (includingraw.githubusercontent.com,github-releases.githubusercontent.com, andobjects.githubusercontent.com).
Depending on the ecosystems you use, you may need to allowlist additional URLs.
https://go.dev—For downloading the Go toolchain.https://golang.org—Alternate domain for Go downloads.https://proxy.golang.org—Official Go module proxy for downloading Go modules during dependency detection.
Note
The actions/go-versions repository is accessed via https://raw.githubusercontent.com, which is already covered in the general requirements.
https://repo.maven.apache.org—Maven Central repository for downloading dependencies.https://api.adoptium.net—For downloading Adoptium/Temurin JDK distributions (default distribution used byactions/setup-java).
If you use a different JDK distribution, you may also need:
https://aka.msandhttps://download.microsoft.com—For Microsoft Build of OpenJDK (note:aka.msis also used for .NET downloads).https://download.oracle.com—For Oracle JDK.https://api.azul.com—For Azul Zulu OpenJDK.
https://aka.ms—Microsoft URL shortener that redirects to .NET download locations.https://builds.dotnet.microsoft.com—Primary feed for .NET SDK and runtime downloads.https://ci.dot.net—Secondary feed for .NET builds.
Note
The microsoft/component-detection tool used by .NET autosubmission is downloaded from {% data variables.product.github %} releases, which is already covered in the general requirements (https://github.com and https://*.githubusercontent.com).
https://python.org—For downloading Python interpreters.
Note
The actions/python-versions repository and microsoft/component-detection releases are accessed via URLs already covered in the general requirements (https://*.githubusercontent.com and https://github.com).
Use {% data variables.product.company_short %}-hosted {% data variables.actions.hosted_runners %} for automatic dependency submission
{% data variables.product.prodname_team %} or {% data variables.product.prodname_ghe_cloud %} users can use {% data variables.actions.hosted_runners %} to run automatic dependency submissions jobs.
- Provision a larger runner at the organization level with the name
dependency-submission. For more information, see Adding a {% data variables.actions.hosted_runner %} to an organization. - Give your repository access to the runner. For more information, see Allowing repositories to access {% data variables.actions.hosted_runners %}.
- Under "Dependency graph", click the dropdown menu next to “Automatic dependency submission”, then select Enabled for labeled runners.
Automatic dependency submission makes a best effort to cache package downloads between runs using the Cache action to speed up workflows. For self-hosted runners, you may want to manage this cache within your own infrastructure. To do this, you can disable the built-in caching by setting an environment variable of GH_DEPENDENCY_SUBMISSION_SKIP_CACHE to true. For more information, see AUTOTITLE.
{% data reusables.dependency-graph.deduplication %}
For Maven projects, automatic dependency submission runs an open source fork of the Maven Dependency Tree Dependency Submission. The fork allows {% data variables.product.github %} to stay in sync with the upstream repository plus maintain some changes that are only applicable to automatic submission. The fork's source is available at advanced-security/maven-dependency-submission-action.
If your repository's dependencies seem inaccurate, check that the timestamp of the last dependency graph build matches the last change to your pom.xml file. The timestamp is visible on the table of alerts in the repository's {% data variables.product.prodname_dependabot %} tab. Pushing a commit which updates pom.xml will trigger a new run of the Dependency Tree Submission action and force a rebuild of that repository's dependency graph.
For Gradle projects, automatic dependency submission runs a fork of the open source Gradle actions from gradle/actions. The fork is available at actions/gradle-build-tools-actions. You can view the results of the autosubmission action under your repository's Actions tab. Each run will be labeled "Automatic Dependency Submission (Gradle)" and its output will contain the JSON payload which the action submitted to the API.
The .NET autosubmission action uses the open source component-detection project as the engine for its dependency detection. It supports .NET 8.x, 9.x, and 10.x. .NET autosubmission runs if the repository's dependabot.yml defines nuget as a package-ecosystem or when there is a supported manifest file in the root directory of the repository. Supported manifest files include .sln, .csproj, packages.config, .vbproj, .vcxproj, and .fsproj.
Python repositories with the dependency graph enabled use {% data variables.product.prodname_dependabot %} graph jobs to generate dependency graphs. {% data variables.product.prodname_dependabot %} graph jobs take precedence over automatic dependency submissions, and the autosubmission workflow described below will no longer run for Python projects. For more information, see AUTOTITLE.
Automatic dependency submission for Python uses the open source component-detection project as its underlying graph generation engine. The autosubmission action will only run if there is a requirements.txt file in the root directory of the repository. Python autosubmission does not currently support private packages; packages referenced in requirements.txt which are not publicly available will cause the autosubmission action to fail.
Note
This action uses actions/setup-python to install Python. You must include a .python-version file in your repository to specify the Python version to be installed.