fix: fix order webhook event schema (#2482) #1339
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Dependency Review' | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
merge_group: | |
branches: | |
- main | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
dependency-review: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout Repository' | |
uses: actions/checkout@v4 | |
- name: Dependency Review | |
uses: actions/dependency-review-action@v4 | |
with: | |
# Possible values: "critical", "high", "moderate", "low" | |
fail-on-severity: critical | |
# Address https://github.com/actions/dependency-review-action/issues/456 | |
base-ref: ${{ github.event.pull_request.base.sha || github.event.repository.default_branch }} | |
head-ref: ${{ github.event.pull_request.head.sha || github.ref }} |