diff options
Diffstat (limited to '.github/workflows/check-misskey-js-autogen.yml')
| -rw-r--r-- | .github/workflows/check-misskey-js-autogen.yml | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/.github/workflows/check-misskey-js-autogen.yml b/.github/workflows/check-misskey-js-autogen.yml index 05034ea0f4..8a81e85521 100644 --- a/.github/workflows/check-misskey-js-autogen.yml +++ b/.github/workflows/check-misskey-js-autogen.yml @@ -18,7 +18,7 @@ jobs: if: ${{ github.event.pull_request.mergeable == null || github.event.pull_request.mergeable == true }} steps: - name: checkout - uses: actions/checkout@v4.3.0 + uses: actions/checkout@v6.0.1 with: submodules: true persist-credentials: false @@ -29,7 +29,7 @@ jobs: - name: setup node id: setup-node - uses: actions/setup-node@v4.4.0 + uses: actions/setup-node@v6.1.0 with: node-version-file: '.node-version' cache: pnpm @@ -53,7 +53,7 @@ jobs: # packages/misskey-js/generator/built/autogen - name: Upload Generated - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: generated-misskey-js path: packages/misskey-js/generator/built/autogen @@ -66,14 +66,14 @@ jobs: if: ${{ github.event.pull_request.mergeable == null || github.event.pull_request.mergeable == true }} steps: - name: checkout - uses: actions/checkout@v4.3.0 + uses: actions/checkout@v6.0.1 with: submodules: true persist-credentials: false ref: refs/pull/${{ github.event.pull_request.number }}/merge - name: Upload From Merged - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: actual-misskey-js path: packages/misskey-js/src/autogen @@ -86,13 +86,13 @@ jobs: pull-requests: write steps: - name: download generated-misskey-js - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v7 with: name: generated-misskey-js path: misskey-js-generated - name: download actual-misskey-js - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v7 with: name: actual-misskey-js path: misskey-js-actual @@ -113,9 +113,9 @@ jobs: - name: send message if: steps.check-changes.outputs.changes == 'true' - uses: thollander/actions-comment-pull-request@v2 + uses: thollander/actions-comment-pull-request@v3 with: - comment_tag: check-misskey-js-autogen + comment-tag: check-misskey-js-autogen message: |- Thank you for sending us a great Pull Request! 👍 Please regenerate misskey-js type definitions! 🙏 @@ -127,9 +127,9 @@ jobs: - name: send message if: steps.check-changes.outputs.changes == 'false' - uses: thollander/actions-comment-pull-request@v2 + uses: thollander/actions-comment-pull-request@v3 with: - comment_tag: check-misskey-js-autogen + comment-tag: check-misskey-js-autogen mode: delete message: "Thank you!" create_if_not_exists: false |