From 8a443c652c4c6ff4e662b7615e26ad79adbecb56 Mon Sep 17 00:00:00 2001 From: Rodrigo Quelhas <22591718+RomarQ@users.noreply.github.com> Date: Tue, 25 Jun 2024 16:40:48 +0100 Subject: [PATCH] chore(CI): Increase coverage timeout to 90 minutes (#2847) * chore(CI): Increase coverage timeout to 90 minutes This change increases the timeout of the coverage job to 90 minutes. * Bump docker/setup-buildx-action from 3.2.0 to 3.3.0 Bumps [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) from 3.2.0 to 3.3.0. - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](https://github.com/docker/setup-buildx-action/compare/v3.2.0...v3.3.0) --- updated-dependencies: - dependency-name: docker/setup-buildx-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] * Bump pnpm/action-setup from 3 to 4 Bumps [pnpm/action-setup](https://github.com/pnpm/action-setup) from 3 to 4. - [Release notes](https://github.com/pnpm/action-setup/releases) - [Commits](https://github.com/pnpm/action-setup/compare/v3...v4) --- updated-dependencies: - dependency-name: pnpm/action-setup dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] * Bump docker/build-push-action from 4 to 5 Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 4 to 5. - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v4...v5) --- updated-dependencies: - dependency-name: docker/build-push-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] * Bump peaceiris/actions-gh-pages from 3 to 4 Bumps [peaceiris/actions-gh-pages](https://github.com/peaceiris/actions-gh-pages) from 3 to 4. - [Release notes](https://github.com/peaceiris/actions-gh-pages/releases) - [Changelog](https://github.com/peaceiris/actions-gh-pages/blob/main/CHANGELOG.md) - [Commits](https://github.com/peaceiris/actions-gh-pages/compare/v3...v4) --- updated-dependencies: - dependency-name: peaceiris/actions-gh-pages dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/build.yml | 12 ++++++------ .github/workflows/coverage.yml | 2 +- .github/workflows/docs.yml | 2 +- .github/workflows/prepare-binary.yml | 4 ++-- .github/workflows/publish-typescript-api.yml | 2 +- .github/workflows/upgrade-typescript-api.yml | 2 +- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5d5b38ecfa..78735ea2d3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -198,7 +198,7 @@ jobs: with: ref: ${{ needs.set-tags.outputs.git_ref }} - name: Use pnpm - uses: pnpm/action-setup@v3 + uses: pnpm/action-setup@v4 with: version: 8.6.12 - name: Use Node.js @@ -416,7 +416,7 @@ jobs: name: moonbeam path: build - name: Use pnpm - uses: pnpm/action-setup@v3 + uses: pnpm/action-setup@v4 with: version: 8.6.12 - name: Use Node.js @@ -483,7 +483,7 @@ jobs: - name: Set up QEMU uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3.2.0 + uses: docker/setup-buildx-action@v3.3.0 with: version: latest driver-opts: | @@ -495,7 +495,7 @@ jobs: password: ${{ secrets.MBF_DOCKERHUB_PASSWORD }} - name: Build and push moonbeam id: docker_build - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: context: . file: ./docker/moonbeam.Dockerfile @@ -538,7 +538,7 @@ jobs: uses: actions/checkout@v4 with: ref: ${{ needs.set-tags.outputs.git_ref }} - - uses: pnpm/action-setup@v3 + - uses: pnpm/action-setup@v4 with: version: 8 - uses: actions/setup-node@v4 @@ -586,7 +586,7 @@ jobs: uses: actions/checkout@v4 with: ref: ${{ needs.set-tags.outputs.git_ref }} - - uses: pnpm/action-setup@v3 + - uses: pnpm/action-setup@v4 with: version: 8 - uses: actions/setup-node@v4 diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 0ce9935c6d..f2e38fb8f4 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -91,7 +91,7 @@ jobs: labels: bare-metal needs: ["set-tags"] if: ${{ !github.event.pull_request.head.repo.fork }} - timeout-minutes: 60 + timeout-minutes: 90 env: RUSTC_WRAPPER: "sccache" CARGO_INCREMENTAL: "0" diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 44903e464f..f74235c9e2 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -46,7 +46,7 @@ jobs: run: echo "" > ./target/doc/index.html - name: Deploy documentation - uses: peaceiris/actions-gh-pages@v3 + uses: peaceiris/actions-gh-pages@v4 with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_branch: gh-pages diff --git a/.github/workflows/prepare-binary.yml b/.github/workflows/prepare-binary.yml index cc983c083d..8bc7ece613 100644 --- a/.github/workflows/prepare-binary.yml +++ b/.github/workflows/prepare-binary.yml @@ -67,7 +67,7 @@ jobs: - name: Set up QEMU uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3.2.0 + uses: docker/setup-buildx-action@v3.3.0 with: version: latest driver-opts: | @@ -79,7 +79,7 @@ jobs: password: ${{ secrets.MBF_DOCKERHUB_PASSWORD }} - name: Build and push moonbeam id: docker_build - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: context: . file: ./docker/moonbeam.Dockerfile diff --git a/.github/workflows/publish-typescript-api.yml b/.github/workflows/publish-typescript-api.yml index 85b7c27957..6e3c29f366 100644 --- a/.github/workflows/publish-typescript-api.yml +++ b/.github/workflows/publish-typescript-api.yml @@ -38,7 +38,7 @@ jobs: with: ref: ${{ github.event.inputs.sha }} - name: Use pnpm - uses: pnpm/action-setup@v3 + uses: pnpm/action-setup@v4 with: version: 8.6.12 - name: Use Node.js diff --git a/.github/workflows/upgrade-typescript-api.yml b/.github/workflows/upgrade-typescript-api.yml index 240feefd06..b6f1781400 100644 --- a/.github/workflows/upgrade-typescript-api.yml +++ b/.github/workflows/upgrade-typescript-api.yml @@ -29,7 +29,7 @@ jobs: with: node-version: 20.10.0 - name: Use pnpm - uses: pnpm/action-setup@v3 + uses: pnpm/action-setup@v4 with: version: 8 - name: Upgrade polkadotjs for moonbeam-types-bundle