fix(app): stabilize session composer dock scrolling #653
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: | |
| pull_request: | |
| branches: [dev] | |
| concurrency: | |
| group: dependency-review-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| jobs: | |
| review: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| # Advisory check: `warn-only: true` surfaces CVE/license findings | |
| # in the Actions log but never fails the PR. Paired with `never` | |
| # for comment-summary-in-pr so the action needs no write access | |
| # and runs on fork PRs too (exactly where advisory coverage is | |
| # most useful). Upgrading to fail-on-severity: high is a separate | |
| # decision. | |
| - uses: actions/dependency-review-action@2031cfc080254a8a887f58cffee85186f0e49e48 # actions/dependency-review-action@v4.9.0 | |
| with: | |
| comment-summary-in-pr: never | |
| warn-only: true |