Skip to content

Commit db1e24a

Browse files
committed
fix: Update GitHub Actions to v4 to fix deprecated actions
1 parent a1b4ae2 commit db1e24a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515

1616
- name: Setup .NET
17-
uses: actions/setup-dotnet@v3
17+
uses: actions/setup-dotnet@v4
1818
with:
1919
dotnet-version: '9.0.x'
2020

@@ -31,7 +31,7 @@ jobs:
3131
run: dotnet pack src/CodeContext.CLI/CodeContext.CLI.csproj --configuration Release --output ./artifacts
3232

3333
- name: Upload artifacts
34-
uses: actions/upload-artifact@v3
34+
uses: actions/upload-artifact@v4
3535
with:
3636
name: nuget-packages
3737
path: ./artifacts/*.nupkg

0 commit comments

Comments
 (0)