X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=.github%2Fworkflows%2Fgenerate-typedoc.yml;h=7e7af20e2cf6f03c72791cb0f9ef9be8fe065229;hb=d94bee6fb7e3c48b2490cc4fdd1fe2c205c33f2a;hp=842f466767741c4b0fd8adce9f4eb2846dc84895;hpb=9b2fdd9fbe65595ae80ff429b633ab2222188946;p=poolifier.git diff --git a/.github/workflows/generate-typedoc.yml b/.github/workflows/generate-typedoc.yml index 842f4667..7e7af20e 100644 --- a/.github/workflows/generate-typedoc.yml +++ b/.github/workflows/generate-typedoc.yml @@ -9,15 +9,15 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token fetch-depth: 0 # otherwise, you will failed to push refs to dest repo - - name: Set node version to 14 - uses: actions/setup-node@v2 + - name: Set node version to 16 + uses: actions/setup-node@v3 with: - node-version: 14 + node-version: '16.x' - name: Generate TypeDoc run: | @@ -35,5 +35,5 @@ jobs: if: "github.repository == 'poolifier/poolifier' && github.ref == 'refs/heads/master'" uses: ad-m/github-push-action@master with: - github_token: ${{ secrets.USER_TOKEN }} + github_token: ${{ secrets.GITHUB_TOKEN }} branch: master