From 9c623f75c912a9486b92531cf3553ef6cb357a3a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 12 Feb 2025 19:48:12 +0900 Subject: [PATCH] chore(deps): update ci dependencies (non-major) (#332) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/check-misskey-js-autogen.yaml | 12 ++++++------ .github/workflows/docker-publish.yaml | 8 ++++---- .github/workflows/lint-locales.yaml | 12 ++++++------ .github/workflows/lint.yaml | 12 ++++++------ .github/workflows/release.yaml | 10 +++++----- .github/workflows/test-backend.yaml | 8 ++++---- .github/workflows/test-federation.yaml | 4 ++-- .github/workflows/test-frontend.yaml | 14 +++++++------- 8 files changed, 40 insertions(+), 40 deletions(-) diff --git a/.github/workflows/check-misskey-js-autogen.yaml b/.github/workflows/check-misskey-js-autogen.yaml index 768a0f3adfe8..7e2d40d8a10d 100644 --- a/.github/workflows/check-misskey-js-autogen.yaml +++ b/.github/workflows/check-misskey-js-autogen.yaml @@ -43,12 +43,12 @@ jobs: submodules: true - name: Setup pnpm - uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 + uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0 with: run_install: false - name: Setup Node.js - uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 + uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0 with: node-version-file: .node-version cache: pnpm @@ -75,7 +75,7 @@ jobs: pnpm run --filter misskey-js-type-generator generate - name: Upload generated_misskey_js - uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 + uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 with: name: generated_misskey_js path: packages/misskey-js/generator/built/autogen @@ -95,7 +95,7 @@ jobs: submodules: true - name: Upload actual_misskey_js - uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 + uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 with: name: actual_misskey_js path: packages/misskey-js/src/autogen @@ -138,7 +138,7 @@ jobs: - name: Comment on PR (update) if: github.event_name == 'pull_request_target' && steps.check-changes.outputs.changes == 'true' continue-on-error: true - uses: marocchino/sticky-pull-request-comment@331f8f5b4215f0445d3c07b4967662a32a2d3e31 # v2.9.0 + uses: marocchino/sticky-pull-request-comment@52423e01640425a022ef5fd42c6fb5f633a02728 # v2.9.1 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} header: check-misskey-js-autogen @@ -156,7 +156,7 @@ jobs: - name: Comment on PR (delete) if: github.event_name == 'pull_request_target' && steps.check-changes.outputs.changes == 'false' continue-on-error: true - uses: marocchino/sticky-pull-request-comment@331f8f5b4215f0445d3c07b4967662a32a2d3e31 # v2.9.0 + uses: marocchino/sticky-pull-request-comment@52423e01640425a022ef5fd42c6fb5f633a02728 # v2.9.1 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} header: check-misskey-js-autogen diff --git a/.github/workflows/docker-publish.yaml b/.github/workflows/docker-publish.yaml index 1d64e0e8e993..0a9f2d2dce34 100644 --- a/.github/workflows/docker-publish.yaml +++ b/.github/workflows/docker-publish.yaml @@ -39,7 +39,7 @@ jobs: fetch-depth: 1 - name: Setup Docker Buildx - uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0 + uses: docker/setup-buildx-action@f7ce87c1d6bead3e36075b2ce75da1f6cc28aaca # v3.9.0 - name: Docker meta id: meta @@ -59,7 +59,7 @@ jobs: - name: Build and Push to Registry id: build - uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # v6.10.0 + uses: docker/build-push-action@ca877d9245402d1537745e0e356eab47c3520991 # v6.13.0 with: context: . push: true @@ -78,7 +78,7 @@ jobs: touch "/tmp/digests/${digest#sha256:}" - name: Upload digest - uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 + uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 with: name: digests-${{ env.PLATFORM_PAIR }} path: /tmp/digests/* @@ -99,7 +99,7 @@ jobs: merge-multiple: true - name: Setup Docker Buildx - uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8.0 + uses: docker/setup-buildx-action@f7ce87c1d6bead3e36075b2ce75da1f6cc28aaca # v3.9.0 - name: Docker meta id: meta diff --git a/.github/workflows/lint-locales.yaml b/.github/workflows/lint-locales.yaml index 3144839b73fe..a5856c003a31 100644 --- a/.github/workflows/lint-locales.yaml +++ b/.github/workflows/lint-locales.yaml @@ -38,12 +38,12 @@ jobs: fetch-depth: 1 - name: Setup pnpm - uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 + uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0 with: run_install: false - name: Setup Node.js - uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 + uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0 with: node-version-file: .node-version cache: pnpm @@ -73,12 +73,12 @@ jobs: fetch-depth: 1 - name: Setup pnpm - uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 + uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0 with: run_install: false - name: Setup Node.js - uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 + uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0 with: node-version-file: .node-version cache: pnpm @@ -104,7 +104,7 @@ jobs: - name: Comment on PR (update) if: github.event_name == 'pull_request_target' && steps.check-changes.outputs.changes == 'true' continue-on-error: true - uses: marocchino/sticky-pull-request-comment@331f8f5b4215f0445d3c07b4967662a32a2d3e31 # v2.9.0 + uses: marocchino/sticky-pull-request-comment@52423e01640425a022ef5fd42c6fb5f633a02728 # v2.9.1 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} header: check-locale-type @@ -122,7 +122,7 @@ jobs: - name: Comment on PR (delete) if: github.event_name == 'pull_request_target' && steps.check-changes.outputs.changes == 'false' continue-on-error: true - uses: marocchino/sticky-pull-request-comment@331f8f5b4215f0445d3c07b4967662a32a2d3e31 # v2.9.0 + uses: marocchino/sticky-pull-request-comment@52423e01640425a022ef5fd42c6fb5f633a02728 # v2.9.1 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} header: check-locale-type diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index acc03c06734a..22ef3a53f222 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -39,12 +39,12 @@ jobs: submodules: true - name: Setup pnpm - uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 + uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0 with: run_install: false - name: Setup Node.js - uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 + uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0 with: node-version-file: .node-version cache: pnpm @@ -84,12 +84,12 @@ jobs: submodules: true - name: Setup pnpm - uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 + uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0 with: run_install: false - name: Setup Node.js - uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 + uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0 with: node-version-file: .node-version cache: pnpm @@ -132,12 +132,12 @@ jobs: submodules: true - name: Setup pnpm - uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 + uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0 with: run_install: false - name: Setup Node.js - uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 + uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0 with: node-version-file: .node-version cache: pnpm diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index cfffd752b2f1..1b33af500c67 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -116,7 +116,7 @@ jobs: sed -i "s|image: ${old_docker_image}|image: ${new_docker_image}|g" compose_example.yml - name: Upload artifacts - uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 + uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 with: name: bump_version_files path: | @@ -132,7 +132,7 @@ jobs: - bump-version-update steps: - name: Create GitHub App Token - uses: actions/create-github-app-token@c1a285145b9d317df6ced56c09f525b5c2b6f755 # v1.11.1 + uses: actions/create-github-app-token@67e27a7eb7db372a1c61a7f9bdab8699e9ee57f7 # v1.11.3 id: app-token with: app-id: ${{ secrets.RELEASE_APP_ID }} @@ -180,7 +180,7 @@ jobs: pr_number: ${{ steps.create-pr.outputs.pr_number }} steps: - name: Create GitHub App Token - uses: actions/create-github-app-token@c1a285145b9d317df6ced56c09f525b5c2b6f755 # v1.11.1 + uses: actions/create-github-app-token@67e27a7eb7db372a1c61a7f9bdab8699e9ee57f7 # v1.11.3 id: app-token with: app-id: ${{ secrets.RELEASE_APP_ID }} @@ -216,7 +216,7 @@ jobs: - create-pr steps: - name: Create GitHub App Token - uses: actions/create-github-app-token@c1a285145b9d317df6ced56c09f525b5c2b6f755 # v1.11.1 + uses: actions/create-github-app-token@67e27a7eb7db372a1c61a7f9bdab8699e9ee57f7 # v1.11.3 id: app-token with: app-id: ${{ secrets.RELEASE_APP_ID }} @@ -246,7 +246,7 @@ jobs: - merge-pr steps: - name: Create GitHub App Token - uses: actions/create-github-app-token@c1a285145b9d317df6ced56c09f525b5c2b6f755 # v1.11.1 + uses: actions/create-github-app-token@67e27a7eb7db372a1c61a7f9bdab8699e9ee57f7 # v1.11.3 id: app-token with: app-id: ${{ secrets.RELEASE_APP_ID }} diff --git a/.github/workflows/test-backend.yaml b/.github/workflows/test-backend.yaml index 49e6de1863ed..f8c1850e69bd 100644 --- a/.github/workflows/test-backend.yaml +++ b/.github/workflows/test-backend.yaml @@ -59,12 +59,12 @@ jobs: submodules: true - name: Setup pnpm - uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 + uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0 with: run_install: false - name: Setup Node.js - uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 + uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0 with: node-version-file: .node-version cache: pnpm @@ -121,12 +121,12 @@ jobs: submodules: true - name: Setup pnpm - uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 + uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0 with: run_install: false - name: Setup Node.js - uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 + uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0 with: node-version-file: .node-version cache: pnpm diff --git a/.github/workflows/test-federation.yaml b/.github/workflows/test-federation.yaml index ffd660c1698a..aaea0d61ba88 100644 --- a/.github/workflows/test-federation.yaml +++ b/.github/workflows/test-federation.yaml @@ -43,12 +43,12 @@ jobs: submodules: true - name: Setup pnpm - uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 + uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0 with: run_install: false - name: Setup Node.js - uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 + uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0 with: node-version-file: .node-version cache: pnpm diff --git a/.github/workflows/test-frontend.yaml b/.github/workflows/test-frontend.yaml index 795bd7737673..9df18e097b02 100644 --- a/.github/workflows/test-frontend.yaml +++ b/.github/workflows/test-frontend.yaml @@ -53,12 +53,12 @@ jobs: submodules: true - name: Setup pnpm - uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 + uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0 with: run_install: false - name: Setup Node.js - uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 + uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0 with: node-version-file: .node-version cache: pnpm @@ -124,12 +124,12 @@ jobs: # if: ${{ matrix.browser == 'firefox' }} - name: Setup pnpm - uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0 + uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0 with: run_install: false - name: Setup Node.js - uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0 + uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0 with: node-version-file: .node-version cache: pnpm @@ -158,7 +158,7 @@ jobs: pnpm exec cypress install - name: Cypress run - uses: cypress-io/github-action@57b70560982e6a11d23d4b8bec7f8a487cdbb71b # v6.7.8 + uses: cypress-io/github-action@7271bed2a170d73c0b08939cd192db51a1c46c50 # v6.7.10 timeout-minutes: 15 with: install: false @@ -167,13 +167,13 @@ jobs: headed: true browser: ${{ matrix.browser }} - - uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 + - uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 if: failure() with: name: ${{ matrix.browser }}-cypress-screenshots path: cypress/screenshots - - uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0 + - uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0 if: always() with: name: ${{ matrix.browser }}-cypress-videos