Dependabot Dependency Checking #110
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .github/workflows/dependency_check.yml | |
name: Dependabot Dependency Checking | |
on: | |
schedule: | |
- cron: "0 0 * * *" # Every day at midnight | |
jobs: | |
check_dependencies: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check for outdated/vulnerable dependencies | |
uses: dependabot/dependabot-core@main | |
with: | |
update-strategy: "time-based" |