Skip to content

Commit d672c67

Browse files
Use bot token
1 parent 6fb2349 commit d672c67

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/dependabot-update-lock.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,18 @@ jobs:
1818
permissions:
1919
contents: write
2020
steps:
21+
- name: Generate a token
22+
id: generate-token
23+
uses: actions/create-github-app-token@v2
24+
with:
25+
app-id: ${{ vars.APP_ID }}
26+
private-key: ${{ secrets.APP_PRIVATE_KEY }}
27+
2128
- uses: actions/checkout@v5
2229
with:
2330
submodules: recursive
2431
ref: ${{ github.head_ref }}
32+
token: ${{ steps.generate-token.outputs.token }}
2533

2634
- name: Setup Node
2735
uses: actions/setup-node@v5

0 commit comments

Comments
 (0)