File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : renovatebot
2+
3+ on :
4+ push :
5+ branches :
6+ - master
7+ paths :
8+ - ' .github/workflows/**'
9+ workflow_dispatch :
10+
11+ jobs :
12+ renovatebot-check :
13+ runs-on : ubuntu-24.04
14+ environment : security
15+ steps :
16+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
17+
18+ - name : Run renovatebot
19+ uses : ConsenSys/github-actions/renovatebot@0dbddeeb180c249e624dc1681c67f22325daedd5 # main
20+ with :
21+ GH_APP_ID : ${{ secrets.GH_APP_ID }}
22+ GH_PRIVATE_KEY : ${{ secrets.GH_PRIVATE_KEY }}
23+ GH_REPOSITORY : ${{ github.repository }}
Original file line number Diff line number Diff line change 1+ {
2+ "$schema" : " https://docs.renovatebot.com/renovate-schema.json" ,
3+ "extends" : [
4+ " config:recommended"
5+ ],
6+ "dependencyDashboard" : false ,
7+ "packageRules" : [
8+ {
9+ "description" : " 1. Pin all GitHub Actions to sha256 digests by default" ,
10+ "matchManagers" : [" github-actions" ],
11+ "pinDigests" : true
12+ },
13+ {
14+ "description" : " 2. For trusted actions, allow updates" ,
15+ "matchManagers" : [" github-actions" ],
16+ "matchPackageNames" : [
17+ " actions/**" ,
18+ " consensys/github-actions/**"
19+ ],
20+ "pinDigests" : true
21+ }
22+ ]
23+ }
You can’t perform that action at this time.
0 commit comments