feat(audience): sessionId on all events, UTMs on sign_up and link_clicked (SDK-140) #3278
Workflow file for this run
This file contains hidden or 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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # pin@v6.0.1 | |
| - name: Dependency Review | |
| uses: actions/dependency-review-action@3b139cfc5fae8b618d3eae3675e383bb1769c019 | |
| 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 }} |