Skip to content

Commit 628f367

Browse files
authored
fix(actions): use github.token
1 parent 67e23e1 commit 628f367

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

actions/setup-environment/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ inputs:
3232
token:
3333
description: 'The token to use for checkout'
3434
required: false
35-
default: ${{ secrets.GITHUB_TOKEN }}
35+
default: ${{ github.token }}
3636

3737
runs:
3838
using: 'composite'
@@ -77,4 +77,4 @@ runs:
7777
- name: Install dependencies with npm
7878
if: inputs.pnpm != 'true'
7979
shell: bash
80-
run: npm ci ${{ inputs.install-flags }}
80+
run: npm ci ${{ inputs.install-flags }}

0 commit comments

Comments
 (0)