You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I encountered a issue during run my dependabot in
Bitbucket pipeline:
step: &dependabot services: - docker name: Dependabot BB image: ruby:latest script: - ruby -v - git clone https://github.com/dependabot/dependabot-script.git - cd dependabot-script - docker build -t "dependabot/dependabot-script" -f Dockerfile . - docker run --rm --env "PROJECT_PATH=****" --env "PACKAGE_MANAGER=pip" --env "DIRECTORY_PATH=/back" --env "BITBUCKET_API_URL=https://api.bitbucket.org/2.0" --env "BITBUCKET_HOSTNAME=bitbucket.org" --env "BITBUCKET_ACCESS_TOKEN=${BITBUCKET_ACCESS_TOKEN}" --env "GITHUB_ACCESS_TOKEN=${GITHUB_ACCESS_TOKEN}" "dependabot/dependabot-script"
All bumps and updates are recognize correct, but dependabot still create the new Pipfile and Pipfile.lock in root directory instead of /back directory (DIRECTORY_PATH). How can I pass right path of package manager? Should I use OPTIONS env? I can't find any manual in order to find solution. Thanks in advance!
The text was updated successfully, but these errors were encountered:
Hi,
I encountered a issue during run my dependabot in
Bitbucket pipeline:
step: &dependabot services: - docker name: Dependabot BB image: ruby:latest script: - ruby -v - git clone https://github.com/dependabot/dependabot-script.git - cd dependabot-script - docker build -t "dependabot/dependabot-script" -f Dockerfile . - docker run --rm --env "PROJECT_PATH=****" --env "PACKAGE_MANAGER=pip" --env "DIRECTORY_PATH=/back" --env "BITBUCKET_API_URL=https://api.bitbucket.org/2.0" --env "BITBUCKET_HOSTNAME=bitbucket.org" --env "BITBUCKET_ACCESS_TOKEN=${BITBUCKET_ACCESS_TOKEN}" --env "GITHUB_ACCESS_TOKEN=${GITHUB_ACCESS_TOKEN}" "dependabot/dependabot-script"
All bumps and updates are recognize correct, but dependabot still create the new Pipfile and Pipfile.lock in root directory instead of /back directory (DIRECTORY_PATH). How can I pass right path of package manager? Should I use OPTIONS env? I can't find any manual in order to find solution. Thanks in advance!
The text was updated successfully, but these errors were encountered: