Skip to content

Commit bf6f692

Browse files
committed
2 parents a0c67e5 + 24dba96 commit bf6f692

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v6
2424
with:
2525
fetch-depth: 0
2626

@@ -30,7 +30,7 @@ jobs:
3030
dotnet-version: ${{ env.DOTNET_VERSION }}
3131

3232
- name: Cache NuGet packages
33-
uses: actions/cache@v4
33+
uses: actions/cache@v5
3434
with:
3535
path: ${{ env.NUGET_PACKAGES }}
3636
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj', '**/Directory.Build.props') }}
@@ -44,7 +44,7 @@ jobs:
4444
run: dotnet build --configuration Release --no-restore
4545

4646
- name: Upload build artifacts
47-
uses: actions/upload-artifact@v4
47+
uses: actions/upload-artifact@v6
4848
with:
4949
name: build-artifacts
5050
path: |
@@ -59,15 +59,15 @@ jobs:
5959

6060
steps:
6161
- name: Checkout
62-
uses: actions/checkout@v4
62+
uses: actions/checkout@v6
6363

6464
- name: Setup .NET
6565
uses: actions/setup-dotnet@v4
6666
with:
6767
dotnet-version: ${{ env.DOTNET_VERSION }}
6868

6969
- name: Cache NuGet packages
70-
uses: actions/cache@v4
70+
uses: actions/cache@v5
7171
with:
7272
path: ${{ env.NUGET_PACKAGES }}
7373
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj', '**/Directory.Build.props') }}
@@ -85,7 +85,7 @@ jobs:
8585
--results-directory ./TestResults
8686
8787
- name: Upload test results
88-
uses: actions/upload-artifact@v4
88+
uses: actions/upload-artifact@v6
8989
if: always()
9090
with:
9191
name: test-results
@@ -104,7 +104,7 @@ jobs:
104104

105105
steps:
106106
- name: Checkout
107-
uses: actions/checkout@v4
107+
uses: actions/checkout@v6
108108
with:
109109
fetch-depth: 0
110110

@@ -114,7 +114,7 @@ jobs:
114114
dotnet-version: ${{ env.DOTNET_VERSION }}
115115

116116
- name: Cache NuGet packages
117-
uses: actions/cache@v4
117+
uses: actions/cache@v5
118118
with:
119119
path: ${{ env.NUGET_PACKAGES }}
120120
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj', '**/Directory.Build.props') }}
@@ -158,14 +158,14 @@ jobs:
158158
-p:SymbolPackageFormat=snupkg
159159
160160
- name: Upload package artifacts
161-
uses: actions/upload-artifact@v4
161+
uses: actions/upload-artifact@v6
162162
with:
163163
name: nuget-packages
164164
path: ./artifacts/*.nupkg
165165
retention-days: 30
166166

167167
- name: Upload symbol packages
168-
uses: actions/upload-artifact@v4
168+
uses: actions/upload-artifact@v6
169169
with:
170170
name: nuget-symbols
171171
path: ./artifacts/*.snupkg
@@ -180,13 +180,13 @@ jobs:
180180

181181
steps:
182182
- name: Download package artifacts
183-
uses: actions/download-artifact@v4
183+
uses: actions/download-artifact@v7
184184
with:
185185
name: nuget-packages
186186
path: ./artifacts
187187

188188
- name: Download symbol packages
189-
uses: actions/download-artifact@v4
189+
uses: actions/download-artifact@v7
190190
with:
191191
name: nuget-symbols
192192
path: ./artifacts

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020

2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v6
2424

2525
- name: Initialize CodeQL
26-
uses: github/codeql-action/init@v3
26+
uses: github/codeql-action/init@v4
2727
with:
2828
languages: csharp
2929
queries: security-and-quality
@@ -37,6 +37,6 @@ jobs:
3737
run: dotnet build --configuration Release
3838

3939
- name: Perform CodeQL Analysis
40-
uses: github/codeql-action/analyze@v3
40+
uses: github/codeql-action/analyze@v4
4141
with:
4242
category: "/language:csharp"

0 commit comments

Comments
 (0)