File tree 2 files changed +11
-8
lines changed
BFF/v3/BlazorWasm/Client/Shared
2 files changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -36,20 +36,23 @@ jobs:
36
36
steps :
37
37
- name : Checkout repository
38
38
uses : actions/checkout@v4
39
-
40
- - name : Setup net8
41
- uses : actions/setup-dotnet@v4
39
+
40
+ - name : Setup Dotnet
41
+ uses : actions/setup-dotnet@3e891b0cb619bf60e2c25674b222b8940e2c1c25
42
42
with :
43
- dotnet-version : ' 8.0.x'
43
+ dotnet-version : |-
44
+ 6.0.x
45
+ 8.0.x
46
+ 9.0.103
44
47
45
- - run : dotnet --info
48
+ - run : dotnet --list-sdks
46
49
47
50
- name : Install .NET Aspire workload
48
51
run : dotnet workload install aspire
49
52
50
53
# Initializes the CodeQL tools for scanning.
51
54
- name : Initialize CodeQL
52
- uses : github/codeql-action/init@v2
55
+ uses : github/codeql-action/init@9e8d0789d4a0fa9ceb6b1738f7e269594bdd67f0
53
56
with :
54
57
languages : ${{ matrix.language }}
55
58
# If you wish to specify custom queries, you can do so here or in a config file.
60
63
- run : ./build.sh build
61
64
62
65
- name : Perform CodeQL Analysis
63
- uses : github/codeql-action/analyze@v2
66
+ uses : github/codeql-action/analyze@9e8d0789d4a0fa9ceb6b1738f7e269594bdd67f0
Original file line number Diff line number Diff line change 1
1
<AuthorizeView >
2
2
<Authorized >
3
- <strong >Hello, @context.User.Identity.Name ! </strong >
3
+ <strong >Hello, @context.User.Identity ? .Name</strong >
4
4
<a href =" @context.User.FindFirst(" bff:logout_url " )?.Value" >Log out</a >
5
5
</Authorized >
6
6
<NotAuthorized >
You can’t perform that action at this time.
0 commit comments