Skip to content

Commit

Permalink
fix UnauthorizedAccessException in workflows (actions/runner#2364)
Browse files Browse the repository at this point in the history
  • Loading branch information
vova3211 committed Sep 1, 2024
1 parent d9737c0 commit 785e67f
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,16 @@ on:
jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: [ '6.0.x', '8.0.x' ]
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v4
- name: Setup .NET ${{ matrix.dotnet-version }}
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet-version }}
dotnet-version: |
6.0.x
8.0.x
- name: Restore dependencies
run: dotnet restore ./src/AspNetCore.Identity.Mongo/
- name: Build
Expand Down

0 comments on commit 785e67f

Please sign in to comment.