@@ -490,8 +490,8 @@ have in your code.
490490 version: 2
491491 updates:
492492 - package-ecosystem: "pip"
493- directory: "/"
494- schedule:
493+ directory: "/"
494+ schedule:
495495 interval: "weekly"
496496 ```
497497
@@ -501,8 +501,8 @@ have in your code.
501501 version: 2
502502 updates:
503503 - package-ecosystem: "uv"
504- directory: "/"
505- schedule:
504+ directory: "/"
505+ schedule:
506506 interval: "weekly"
507507 ```
508508
@@ -557,7 +557,7 @@ have in your code.
557557 ...
558558 ```
559559
560- The `@v4 ` specifies that we are using version 4 of the `actions/checkout` action. This means that if a new version
560+ The `@v5 ` specifies that we are using version 5 of the `actions/checkout` action. This means that if a new version
561561 of the action is released, we will not automatically get the new version. Dependabot can help us with this. Try
562562 adding to the `dependabot.yaml` file that Dependabot should also check for updates in the GitHub Actions ecosystem.
563563
@@ -571,6 +571,7 @@ have in your code.
571571 schedule:
572572 interval: "weekly"
573573 - package-ecosystem: "github-actions"
574+ directory: "/"
574575 schedule:
575576 interval: "weekly"
576577 ```
@@ -591,7 +592,7 @@ have in your code.
591592 * Workflow: A `yaml` file that defines the instructions to be executed on specific events. Needs to be placed in
592593 the `.github/workflows` folder.
593594 * Runner: Workflows need to run somewhere. The environment that the workflow is being executed on is called the
594- runner. Most commonly the runner is hosted by GitHub but can also hosted by yourself.
595+ runner. Most commonly the runner is hosted by GitHub but can also be hosted by yourself.
595596 * Job: A series of steps that are executed on the same runner. A workflow must include at least one job but
596597 often contains many.
597598 * Action: An action is the smallest unit in a workflow. Jobs often consist of multiple actions that are
0 commit comments