Use github event in github action
[poolifier.git] / .github / workflows / generate-typedoc.yml
index 0966eb272352195d7b3761f52bb46a8d57abed3a..93d5c23b210e5b67988445b8ae76f070c948dc17 100644 (file)
@@ -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 16
-        uses: actions/setup-node@v2
+        uses: actions/setup-node@v3
         with:
-          node-version: 16
+          node-version: '16.x'
 
       - name: Generate TypeDoc
         run: |
@@ -36,4 +36,4 @@ jobs:
         uses: ad-m/github-push-action@master
         with:
           github_token: ${{ secrets.GITHUB_TOKEN }}
-          branch: master
+          branch: ${{ github.event.repository.default_branch }}