You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

73 lines
2.3 KiB

build(deps): Bump actions/checkout from 2.3.5 to 2.4.0 (#7199) Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.5 to 2.4.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/actions/checkout/releases">actions/checkout's releases</a>.</em></p> <blockquote> <h2>v2.4.0</h2> <ul> <li>Convert SSH URLs like <code>org-&lt;ORG_ID&gt;@github.com:</code> to <code>https://github.com/</code> - <a href="https://github-redirect.dependabot.com/actions/checkout/pull/621">pr</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/actions/checkout/commit/ec3a7ce113134d7a93b817d10a8272cb61118579"><code>ec3a7ce</code></a> set insteadOf url for org-id (<a href="https://github-redirect.dependabot.com/actions/checkout/issues/621">#621</a>)</li> <li><a href="https://github.com/actions/checkout/commit/fd47087372161c6f2a7b96d2ef87e944d89023ed"><code>fd47087</code></a> codeql should analyze lib not dist (<a href="https://github-redirect.dependabot.com/actions/checkout/issues/620">#620</a>)</li> <li><a href="https://github.com/actions/checkout/commit/3d677ac575eac4b370e52131024fa99ee754def1"><code>3d677ac</code></a> script to generate license info (<a href="https://github-redirect.dependabot.com/actions/checkout/issues/614">#614</a>)</li> <li><a href="https://github.com/actions/checkout/commit/826ba42d6c06e4d78b1b33478af7b54277e60b52"><code>826ba42</code></a> npm audit fix (<a href="https://github-redirect.dependabot.com/actions/checkout/issues/612">#612</a>)</li> <li><a href="https://github.com/actions/checkout/commit/eb8a193c1dbf4bbb2053320cef52bacc1a485839"><code>eb8a193</code></a> update dev dependencies and react to new linting rules (<a href="https://github-redirect.dependabot.com/actions/checkout/issues/611">#611</a>)</li> <li><a href="https://github.com/actions/checkout/commit/c49af7ca1f339b07a5baac8c8bfc49a5248f31d3"><code>c49af7c</code></a> Create codeql-analysis.yml (<a href="https://github-redirect.dependabot.com/actions/checkout/issues/602">#602</a>)</li> <li>See full diff in <a href="https://github.com/actions/checkout/compare/v2.3.5...v2.4.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/checkout&package-manager=github_actions&previous-version=2.3.5&new-version=2.4.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details>
3 years ago
  1. # Runs randomly generated E2E testnets nightly on master
  2. # !! If you change something in this file, you probably want
  3. # to update the e2e-nightly-34x workflow as well!
  4. name: e2e-nightly-master
  5. on:
  6. workflow_dispatch: # allow running workflow manually
  7. schedule:
  8. - cron: '0 2 * * *'
  9. jobs:
  10. e2e-nightly-test:
  11. # Run parallel jobs for the listed testnet groups (must match the
  12. # ./build/generator -g flag)
  13. strategy:
  14. fail-fast: false
  15. matrix:
  16. group: ['00', '01', '02', '03']
  17. runs-on: ubuntu-latest
  18. timeout-minutes: 60
  19. steps:
  20. - uses: actions/setup-go@v2
  21. with:
  22. go-version: '1.17'
  23. - uses: actions/checkout@v2.4.0
  24. - name: Build
  25. working-directory: test/e2e
  26. # Run make jobs in parallel, since we can't run steps in parallel.
  27. run: make -j2 docker generator runner tests
  28. - name: Generate testnets
  29. working-directory: test/e2e
  30. # When changing -g, also change the matrix groups above
  31. run: ./build/generator -g 4 -d networks/nightly/
  32. - name: Run ${{ matrix.p2p }} p2p testnets
  33. working-directory: test/e2e
  34. run: ./run-multiple.sh networks/nightly/*-group${{ matrix.group }}-*.toml
  35. e2e-nightly-fail-2:
  36. needs: e2e-nightly-test
  37. if: ${{ failure() }}
  38. runs-on: ubuntu-latest
  39. steps:
  40. - name: Notify Slack on failure
  41. uses: rtCamp/action-slack-notify@12e36fc18b0689399306c2e0b3e0f2978b7f1ee7
  42. env:
  43. SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
  44. SLACK_CHANNEL: tendermint-internal
  45. SLACK_USERNAME: Nightly E2E Tests
  46. SLACK_ICON_EMOJI: ':skull:'
  47. SLACK_COLOR: danger
  48. SLACK_MESSAGE: Nightly E2E tests failed on master
  49. SLACK_FOOTER: ''
  50. e2e-nightly-success: # may turn this off once they seem to pass consistently
  51. needs: e2e-nightly-test
  52. if: ${{ success() }}
  53. runs-on: ubuntu-latest
  54. steps:
  55. - name: Notify Slack on success
  56. uses: rtCamp/action-slack-notify@12e36fc18b0689399306c2e0b3e0f2978b7f1ee7
  57. env:
  58. SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
  59. SLACK_CHANNEL: tendermint-internal
  60. SLACK_USERNAME: Nightly E2E Tests
  61. SLACK_ICON_EMOJI: ':white_check_mark:'
  62. SLACK_COLOR: good
  63. SLACK_MESSAGE: Nightly E2E tests passed on master
  64. SLACK_FOOTER: ''