Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 6, 2025

Bumps peter-evans/repository-dispatch from 3 to 4.

Release notes

Sourced from peter-evans/repository-dispatch's releases.

Repository Dispatch v4.0.0

⚙️ Requires Actions Runner v2.327.1 or later if you are using a self-hosted runner for Node 24 support.

What's Changed

... (truncated)

Commits
  • 5fc4efd docs: update readme
  • a628c95 feat: v4 (#427)
  • de78ac1 build(deps-dev): bump @​vercel/ncc from 0.38.3 to 0.38.4 (#425)
  • f49fa7f build(deps-dev): bump @​types/node from 18.19.124 to 18.19.127 (#426)
  • 7279ea0 build(deps): bump actions/setup-node from 4 to 5 (#424)
  • 9658fce build(deps-dev): bump @​types/node from 18.19.123 to 18.19.124 (#423)
  • 0ee9de0 build(deps-dev): bump @​types/node from 18.19.121 to 18.19.123 (#422)
  • e9bb007 build(deps): bump actions/checkout from 4 to 5 (#421)
  • 0e731dc build(deps-dev): bump eslint-plugin-prettier from 5.5.3 to 5.5.4 (#420)
  • 62b4729 build(deps): bump actions/download-artifact from 4 to 5 (#419)
  • Additional commits viewable in compare view

Dependabot compatibility score

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 commands and options

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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)

@dependabot dependabot bot added the 🤖 Dependencies Pull requests that update a dependency file label Oct 6, 2025
Copy link
Contributor

@greptile-apps greptile-apps bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Greptile Overview

Summary

This PR upgrades the `peter-evans/repository-dispatch` GitHub Action from version 3 to version 4 in the enterprise build workflow. The change is a single line update in `.github/workflows/dispatch-event-enterprise.yml` that maintains all existing functionality while bringing the action up to date with the latest improvements.

The dispatch-event-enterprise.yml workflow is part of OpenObserve's CI/CD infrastructure that facilitates enterprise builds. When a pull request is created (and it's not from a fork), this workflow generates a GitHub App token, extracts commit information, and dispatches an event to the openobserve/o2-enterprise repository to trigger enterprise-specific build processes. The workflow ensures that enterprise builds are initiated automatically with proper authentication and commit tracking.

The updated action version brings Node 24 support and various dependency updates, but maintains full API compatibility. The workflow's core functionality - generating tokens, setting commit SHAs, and dispatching repository events with client payload data - remains completely unchanged. This is a routine maintenance update that keeps the infrastructure current with the latest action improvements.

Important Files Changed

Changed Files
Filename Score Overview
.github/workflows/dispatch-event-enterprise.yml 5/5 Updated peter-evans/repository-dispatch from v3 to v4 with no functional changes

Confidence score: 5/5

  • This PR is safe to merge with minimal risk
  • Score reflects a routine dependency update with full backward compatibility and no breaking changes
  • No files require special attention

Sequence Diagram

sequenceDiagram
    participant User
    participant "GitHub PR" as PR
    participant "GitHub Actions" as GA
    participant "GitHub App" as App
    participant "Enterprise Repo" as Enterprise

    User->>PR: "Create pull request"
    PR->>GA: "Trigger workflow (pull_request event)"
    GA->>GA: "Check if PR is not from fork"
    GA->>App: "Generate GitHub App token"
    App->>GA: "Return installation access token"
    GA->>GA: "Extract short commit SHA (first 7 chars)"
    GA->>GA: "Set environment variables"
    GA->>Enterprise: "Dispatch repository event (initiate-enterprise-build)"
    Note over Enterprise: Event includes branch name,<br/>commit ID, and repo info
Loading

1 file reviewed, no comments

Edit Code Review Agent Settings | Greptile

@dependabot dependabot bot force-pushed the dependabot/github_actions/peter-evans/repository-dispatch-4 branch 5 times, most recently from d33c437 to 1cdf0d8 Compare October 15, 2025 05:26
Bumps [peter-evans/repository-dispatch](https://github.com/peter-evans/repository-dispatch) from 3 to 4.
- [Release notes](https://github.com/peter-evans/repository-dispatch/releases)
- [Commits](peter-evans/repository-dispatch@v3...v4)

---
updated-dependencies:
- dependency-name: peter-evans/repository-dispatch
  dependency-version: '4'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/github_actions/peter-evans/repository-dispatch-4 branch from 1cdf0d8 to f1945bf Compare October 15, 2025 12:49
@hengfeiyang hengfeiyang merged commit a1f827d into main Oct 21, 2025
9 checks passed
@hengfeiyang hengfeiyang deleted the dependabot/github_actions/peter-evans/repository-dispatch-4 branch October 21, 2025 06:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

🤖 Dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant