Skip to content

Commit 49d5b00

Browse files
authored
Download GitHub database: fix gh invocation
At least as of GitHub CLI v2.13.0, the leading slash in `gh api /repos/...` leads to a 404. In all GitHub CLI versions, the trailing slash of `gh api .../databases/` seems to not be acceptable, either.
1 parent 7a8c9e7 commit 49d5b00

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/codeql/reusables/download-github-database.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ GitHub stores CodeQL databases for over 200,000 repos on GitHub.com, which you c
33
You can check if a repository has any CodeQL databases available for download using the ``/repos/<owner>/<repo>/code-scanning/codeql/databases`` endpoint.
44
For example, to check for CodeQL databases using the `GitHub CLI <https://cli.github.com/manual/gh_api>`__ you would run::
55

6-
gh api /repos/<owner>/<repo>/code-scanning/codeql/databases/
6+
gh api repos/<owner>/<repo>/code-scanning/codeql/databases
77

88
This command returns information about any CodeQL databases that are available for a repository, including the language the database represents, and when the database was last updated. If no CodeQL databases are available, the response is empty.
99

1010
When you have confirmed that a CodeQL database exists for the language you are interested in, you can download it using the following command::
1111

12-
gh api /repos/<owner>/<repo>/code-scanning/codeql/databases/<language> -H 'Accept: application/zip' > path/to/local/database.zip
12+
gh api repos/<owner>/<repo>/code-scanning/codeql/databases/<language> -H 'Accept: application/zip' > path/to/local/database.zip
1313

1414
For more information, see the documentation for the `Get CodeQL database <https://docs.github.com/en/rest/code-scanning#get-a-codeql-database-for-a-repository>`__ endpoint in the GitHub REST API documentation.

0 commit comments

Comments
 (0)