11name : Check icons keywords
22
3+ permissions :
4+ contents : write
5+
36on :
47 workflow_dispatch :
58 # push:
1720
1821 steps :
1922 - name : Checkout repository
20- uses : actions/checkout@v3
23+ uses : actions/checkout@v6
24+ with :
25+ persist-credentials : false
2126
2227 - name : List SVG files
2328 run : |
8893
8994 steps :
9095 - name : Checkout repository
91- uses : actions/checkout@v3
96+ uses : actions/checkout@v6
97+ with :
98+ persist-credentials : false
9299
93100 - name : List SVG files
94101 run : |
@@ -164,9 +171,10 @@ jobs:
164171
165172 steps :
166173 - name : Checkout repository
167- uses : actions/checkout@v3
174+ uses : actions/checkout@v6
168175 with :
169- token : ${{ secrets.NOVUM_PRIVATE_REPOS }}
176+ persist-credentials : false
177+ token : ${{ secrets.GITHUB_TOKEN }}
170178 ref : ${{ github.head_ref }}
171179
172180 - name : Set up Python
@@ -192,7 +200,7 @@ jobs:
192200
193201 - name : Commit & Push
194202 env :
195- GITHUB_TOKEN : ${{ secrets.NOVUM_PRIVATE_REPOS }}
203+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
196204 run : |
197205 git config user.name "github-actions"
198206 git config user.email "github-actions[bot]@users.noreply.github.com"
@@ -232,7 +240,9 @@ jobs:
232240
233241 steps :
234242 - name : Checkout repository
235- uses : actions/checkout@v3
243+ uses : actions/checkout@v6
244+ with :
245+ persist-credentials : false
236246
237247 - name : List SVG files
238248 run : |
0 commit comments