Bump Microsoft.NET.Test.Sdk from 17.7.2 to 17.8.0 #381
Workflow file for this run
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: [pull_request, push, workflow_dispatch] | |
permissions: | |
contents: read | |
# https://www.meziantou.net/how-to-cancel-github-workflows-when-pushing-new-commits-on-a-branch.htm | |
concurrency: | |
# github.event.pull_request.number || github.ref: pull request number or branch name if not a pull request | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
dependency-review: | |
if: contains(github.actor, 'dependabot') == false | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout Repository' | |
uses: actions/checkout@v4.1.1 | |
- name: 'Dependency Review' | |
uses: actions/dependency-review-action@v3 | |
with: | |
base-ref: master | |
head-ref: master | |
fail-on-severity: high |