Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fetching GitLab repo contents correctly uses the ref argument #7351

Merged
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
2 changes: 1 addition & 1 deletion common/lib/dependabot/file_fetchers/base.rb
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ def _build_github_file_struct(file)

def _gitlab_repo_contents(repo, path, commit)
gitlab_client.
repo_tree(repo, path: path, ref_name: commit, per_page: 100).
repo_tree(repo, path: path, ref: commit, per_page: 100).
map do |file|
# GitLab API essentially returns the output from `git ls-tree`
type = case file.type
Expand Down
Loading