We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fb2349 commit d672c67Copy full SHA for d672c67
1 file changed
.github/workflows/dependabot-update-lock.yml
@@ -18,10 +18,18 @@ jobs:
18
permissions:
19
contents: write
20
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
+
28
- uses: actions/checkout@v5
29
with:
30
submodules: recursive
31
ref: ${{ github.head_ref }}
32
+ token: ${{ steps.generate-token.outputs.token }}
33
34
- name: Setup Node
35
uses: actions/setup-node@v5
0 commit comments