From 33d2e02fad60b2ff45648196da5fdf55ee9d1166 Mon Sep 17 00:00:00 2001 From: John Luo Date: Fri, 19 Jan 2024 11:35:48 -0600 Subject: [PATCH 1/2] Dump github context to diagnose GHA cache context (#1479) * Dump github context to diagnose GHA cache context * Use ubuntu latest * Fixup name --- .github/workflows/gha-diagnostics.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/gha-diagnostics.yml diff --git a/.github/workflows/gha-diagnostics.yml b/.github/workflows/gha-diagnostics.yml new file mode 100644 index 000000000..fe1b3d8d1 --- /dev/null +++ b/.github/workflows/gha-diagnostics.yml @@ -0,0 +1,20 @@ +name: Diagnose github context +on: + pull_request: + types: + - opened + - reopened + - synchronize + - closed + paths-ignore: + - '**.md' + +jobs: + gha_diagnostics: + runs-on: ubuntu-latest + name: Diagnose github context + steps: + - name: Dump GitHub context + env: + GITHUB_CONTEXT: ${{ toJson(github) }} + run: echo "$GITHUB_CONTEXT" \ No newline at end of file From 519f86a843700db52c9cdeac1c97c65ffac36c8e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 16:46:46 +0000 Subject: [PATCH 2/2] Bump cypress-io/github-action from 6.6.0 to 6.6.1 Bumps [cypress-io/github-action](https://github.com/cypress-io/github-action) from 6.6.0 to 6.6.1. - [Release notes](https://github.com/cypress-io/github-action/releases) - [Changelog](https://github.com/cypress-io/github-action/blob/master/CHANGELOG.md) - [Commits](https://github.com/cypress-io/github-action/compare/ebe8b24c4428922d0f793a5c4c96853a633180e3...1b70233146622b69e789ccdd4f9452adc638d25a) --- updated-dependencies: - dependency-name: cypress-io/github-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/cypress.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index a4fa01504..51e4ec554 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -47,7 +47,7 @@ jobs: NODE_TLS_REJECT_UNAUTHORIZED: 0 - name: Cypress run - uses: cypress-io/github-action@ebe8b24c4428922d0f793a5c4c96853a633180e3 # v6.6.0 + uses: cypress-io/github-action@1b70233146622b69e789ccdd4f9452adc638d25a # v6.6.1 with: wait-on: "${{ inputs.preview_url }}" command: 'npm run test:cypress:parallel'