diff options
| author | renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> | 2025-12-16 09:26:10 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-16 09:26:10 +0900 |
| commit | 99e25784ad79f16a200750a16cb20f83502d10c4 (patch) | |
| tree | c0e3a532ff2c15d5132ae8b405149632192798a2 /.github/workflows/report-backend-memory.yml | |
| parent | [skip ci] Update CHANGELOG.md (prepend template) (diff) | |
| download | misskey-99e25784ad79f16a200750a16cb20f83502d10c4.tar.gz misskey-99e25784ad79f16a200750a16cb20f83502d10c4.tar.bz2 misskey-99e25784ad79f16a200750a16cb20f83502d10c4.zip | |
chore(deps): update [github actions] update dependencies (major) (#16869)
* chore(deps): update [github actions] update dependencies
* migrate
* bump download-artifact to v7
* bump upload-artifact to v6
---------
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: kakkokari-gtyih <67428053+kakkokari-gtyih@users.noreply.github.com>
Diffstat (limited to '.github/workflows/report-backend-memory.yml')
| -rw-r--r-- | .github/workflows/report-backend-memory.yml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/.github/workflows/report-backend-memory.yml b/.github/workflows/report-backend-memory.yml index ede43cc645..c339ca49b4 100644 --- a/.github/workflows/report-backend-memory.yml +++ b/.github/workflows/report-backend-memory.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Download artifact - uses: actions/github-script@v7.1.0 + uses: actions/github-script@v8.0.0 with: script: | const fs = require('fs'); @@ -107,16 +107,16 @@ jobs: fi echo "$FOOTER" >> ./output.md - - uses: thollander/actions-comment-pull-request@v2 + - uses: thollander/actions-comment-pull-request@v3 with: - pr_number: ${{ steps.load-pr-num.outputs.pr-number }} - comment_tag: show_memory_diff - filePath: ./output.md + pr-number: ${{ steps.load-pr-num.outputs.pr-number }} + comment-tag: show_memory_diff + file-path: ./output.md - name: Tell error to PR - uses: thollander/actions-comment-pull-request@v2 + uses: thollander/actions-comment-pull-request@v3 if: failure() && steps.load-pr-num.outputs.pr-number with: - pr_number: ${{ steps.load-pr-num.outputs.pr-number }} - comment_tag: show_memory_diff_error + pr-number: ${{ steps.load-pr-num.outputs.pr-number }} + comment-tag: show_memory_diff_error message: | An error occurred while comparing backend memory usage. See [workflow logs](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}) for details. |