Skip to content

Commit 2438258

Browse files
committed
[Chore] update actions
1 parent 1cbd2de commit 2438258

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/CD.yml

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

1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 0
1717

1818
- name: Setup .NET Core
19-
uses: actions/setup-dotnet@v1
19+
uses: actions/setup-dotnet@v4
2020

2121
- name: Restore
2222
run: dotnet restore
@@ -30,7 +30,7 @@ jobs:
3030
- name: Push
3131
run: dotnet nuget push "**/dotnet-depends.*.nupkg" -k ${{ secrets.NUGET_APIKEY }} -s https://api.nuget.org/v3/index.json
3232

33-
- uses: actions/upload-artifact@v2
33+
- uses: actions/upload-artifact@v4
3434
with:
3535
name: nuget
3636
path: .artifacts

.github/workflows/CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616
with:
1717
fetch-depth: 0
1818

1919
- name: Setup .NET Core
20-
uses: actions/setup-dotnet@v1
20+
uses: actions/setup-dotnet@v4
2121

2222
- name: Restore
2323
run: dotnet restore

0 commit comments

Comments
 (0)