<something>-<date>
or <something>-<git-sha>
are good<something>-<date>-<git-sha>
is good latest
for friendly dev use, but don’t use it in prodpr-<number>
tag# .github/dependabot.yml in every repo with GHAs
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
You can do this in the extra credit slides later
Avoid multiple commits in the same branch/PR from running at the same time
Add this at workflow level, before jobs, in every workflow
# cancel any previously-started, yet still active runs of this workflow on the same branch
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
You can do this in the extra credit slides later