File tree Expand file tree Collapse file tree 5 files changed +83
-1
lines changed
Expand file tree Collapse file tree 5 files changed +83
-1
lines changed Original file line number Diff line number Diff line change 1+ # Description
2+
3+ Please explain the changes you made here:
4+
5+ - foo
6+
7+ ## Notes
8+
9+ Please add screenshots or some additional context if you believe it is needed.
10+
11+ ## Checklist
12+
13+ - [ ] Only GitHub links to open-source repos are added
14+ - [ ] No duplicate links are added
15+ - [ ] All repos exist and are public
16+ - [ ] All repos have at least 50 stars
Original file line number Diff line number Diff line change 1+ # https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
2+
3+ version : 2
4+ updates :
5+ - package-ecosystem : " pip"
6+ directory : " /"
7+ schedule :
8+ interval : " monthly"
9+ time : " 09:00"
10+ timezone : " Europe/Prague"
11+ assignees :
12+ - " vavkamil"
13+ cooldown :
14+ default-days : 7
15+
16+ - package-ecosystem : " github-actions"
17+ directory : " /"
18+ schedule :
19+ interval : " monthly"
20+ time : " 09:00"
21+ timezone : " Europe/Prague"
22+ assignees :
23+ - " vavkamil"
24+ cooldown :
25+ default-days : 7
Original file line number Diff line number Diff line change 1+ # https://github.com/woodruffw/zizmor
2+
3+ name : Security
4+
5+ on :
6+ push :
7+ branches :
8+ - main
9+ pull_request :
10+ paths :
11+ - ' .github/workflows/**'
12+
13+ permissions : {}
14+
15+ jobs :
16+ zizmor :
17+ # name: zizmor via PyPI
18+ runs-on : ubuntu-latest
19+ permissions :
20+ contents : read
21+
22+ steps :
23+ - name : Checkout repository
24+ 25+ with :
26+ persist-credentials : false
27+
28+ - name : Set up Python
29+ uses : actions/setup-python@v6
30+ with :
31+ python-version : ' 3.10.4'
32+
33+ - name : Install Zizmor
34+ run : |
35+ python -m pip install --upgrade pip
36+ pip install $(grep '^zizmor==' requirements.txt)
37+
38+ - name : Run Zizmor
39+ run : zizmor .github/workflows
Original file line number Diff line number Diff line change 1717 - name : Checkout repository
18181919 with :
20- fetch-depth : 0 # we need history for diff
20+ fetch-depth : 0
21+ persist-credentials : false
2122
2223 - name : Fetch base branch
2324 run : |
Original file line number Diff line number Diff line change 1+ zizmor == 1.16.1
You can’t perform that action at this time.
0 commit comments