Skip to content

Commit

Permalink
Issue #110: Minor text edits to improve readability. Update dependabo…
Browse files Browse the repository at this point in the history
…t GH action with latest from Python SK.
  • Loading branch information
ingyhere committed Mar 19, 2024
1 parent 1e3b8e5 commit 8eb5bf2
Showing 1 changed file with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,19 @@ If you do not have organizational permissions or if you wish to customize securi
- For added security, we suggest turning on Dependabot security updates to automatically generate pull requests for known vulnerabilities in your dependencies.
- We also recommend enabling Dependabot version updates _if you are using a package manager for your project_. This will help you keep your dependencies up-to-date. To configure Dependabot version updates:
1. Create a `.github/dependabot.yml` file in your repository.
2. Specify the package-ecosystem, directory, and schedule for the updates. For example:
2. Specify the package-ecosystem, directory, schedule and branch to update. For example (from the [Slim Python Starter Kit](https://github.com/NASA-AMMOS/slim-starterkit-python/blob/main/.github/dependabot.yml)):
```yml
version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
- package-ecosystem: 'pip'
directory: '/' # location of package manifests
schedule:
interval: "daily"
interval: 'daily'
time: '09:00'
timezone: 'America/Los_Angeles'
target-branch: 'main'
labels:
- 'dependencies'
```
- To view Dependabot alerts and version updates:
- Head back to the main page of your repository.
Expand Down

0 comments on commit 8eb5bf2

Please sign in to comment.