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/get-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/get-backend-memory.yml')
| -rw-r--r-- | .github/workflows/get-backend-memory.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/get-backend-memory.yml b/.github/workflows/get-backend-memory.yml index 458f303f0f..99f89631bb 100644 --- a/.github/workflows/get-backend-memory.yml +++ b/.github/workflows/get-backend-memory.yml @@ -40,14 +40,14 @@ jobs: - 56312:6379 steps: - - uses: actions/checkout@v4.3.0 + - uses: actions/checkout@v6.0.1 with: ref: ${{ matrix.ref }} submodules: true - name: Setup pnpm uses: pnpm/action-setup@v4.2.0 - name: Use Node.js - uses: actions/setup-node@v4.4.0 + uses: actions/setup-node@v6.1.0 with: node-version-file: '.node-version' cache: 'pnpm' @@ -67,7 +67,7 @@ jobs: # Start the server and measure memory usage node packages/backend/scripts/measure-memory.mjs > ${{ matrix.memory-json-name }} - name: Upload Artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: memory-artifact-${{ matrix.memory-json-name }} path: ${{ matrix.memory-json-name }} @@ -81,7 +81,7 @@ jobs: PR_NUMBER: ${{ github.event.number }} run: | echo "$PR_NUMBER" > ./pr_number - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v6 with: name: memory-artifact-pr-number path: pr_number |