From a3f05139c292947154a94ccb1beece01a3c884df Mon Sep 17 00:00:00 2001 From: ctapang Date: Tue, 5 Dec 2023 12:02:57 -0800 Subject: [PATCH] Use GITHUB_TOKEN for auth --- .github/workflows/node.js.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 64806de..25dbbd2 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -10,6 +10,9 @@ jobs: build: runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: write strategy: matrix: @@ -17,6 +20,8 @@ jobs: steps: - uses: actions/checkout@v3 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 with: