@@ -38,28 +38,28 @@ jobs:
38
38
39
39
steps :
40
40
- name : Checkout repository
41
- uses : actions/checkout@v2
41
+ uses : actions/checkout@v4
42
42
43
43
# Initializes the CodeQL tools for scanning.
44
44
- name : Initialize CodeQL
45
- uses : github/codeql-action/init@v2
45
+ uses : github/codeql-action/init@v3
46
46
with :
47
47
languages : ${{ matrix.language }}
48
48
# If you wish to specify custom queries, you can do so here or in a config file.
49
49
# By default, queries listed here will override any specified in a config file.
50
50
# Prefix the list here with "+" to use these queries and those in the config file.
51
51
# queries: ./path/to/local/query, your-org/your-repo/queries@main
52
52
53
- # Setup .NET 7
54
- - name : Setup .NET 7
55
- uses : actions/setup-dotnet@v3
53
+ # Setup .NET 9
54
+ - name : Setup .NET 9
55
+ uses : actions/setup-dotnet@v4
56
56
with :
57
- dotnet-version : 7 .0.x
57
+ dotnet-version : 9 .0.x
58
58
59
59
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
60
60
# If this step fails, then you should remove it and run the build manually (see below)
61
61
- name : Autobuild
62
- uses : github/codeql-action/autobuild@v2
62
+ uses : github/codeql-action/autobuild@v3
63
63
64
64
# ℹ️ Command-line programs to run using the OS shell.
65
65
# 📚 https://git.io/JvXDl
73
73
# make release
74
74
75
75
- name : Perform CodeQL Analysis
76
- uses : github/codeql-action/analyze@v2
76
+ uses : github/codeql-action/analyze@v3
0 commit comments