Dependabot not giving any alerts with and without dependabot.yml #49290
Unanswered
OsTarek
asked this question in
Enterprise
Replies: 1 comment
-
|
Double check your pathing. When I run Actions, typically the pathing is See example of my GitHub action to run a python script. - run: |
echo "Run, Build Application using scripts"
python3 -c "
# path to test.py is in a folder in called resources.
scripts = [ './resources/test.py' ]
for script in scripts:
with open(script, 'r') as file:
exec(file.read())
"Also Check the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Select Topic Area
Question
Body
Working through two private repositories under Github Enterprise, both with dependabot alerts enabled.
One of them isn't receiving any security alerts from dependabot, where with github code scanning actions we get quite a few of alerts.
Said repo contains two maven java projects, so there are 2 pom.xml files (and 2 pom_parent.xml), so I created a dependabot.yml file that points to both, in case the default behavior wasn't able to parse the repo as below (with xyz1 and xyz2 being the 2 subprojects each containing a pair of pom.xml and pom_parent.xml).
Any idea what's wrong or missing?
Beta Was this translation helpful? Give feedback.
All reactions