Bump XtremeIdiots.Portal.RepositoryApi.Abstractions from 1.1.104.1 to 1.1.105.1 #212
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: Pull Request Validation | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
permissions: | |
id-token: write # This is required for Az CLI Login | |
contents: read # This is required for actions/checkout | |
concurrency: # This is required to prevent multiple runs of the same workflow from running at the same time. | |
group: ${{ github.workflow }} | |
jobs: | |
dependency-review: | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout Repository" | |
uses: actions/checkout@v3 | |
- name: "Dependency Review" | |
uses: actions/dependency-review-action@v2 | |
dotnet-ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: frasermolyneux/actions/dotnet-web-ci@main | |
with: | |
dotnet-project: "admin-webapp" | |
dotnet-version: 7.0.x | |
src-folder: "src" |