We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b50b5e commit dc08ad9Copy full SHA for dc08ad9
.github/workflows/dotnet-core.yml
@@ -13,7 +13,7 @@ jobs:
13
14
steps:
15
- name: 📥 Checkout Code
16
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
17
18
- name: 💉 Install dependencies
19
run: dotnet restore
@@ -28,7 +28,7 @@ jobs:
28
run: dotnet pack --no-build --configuration Release src/todo/todo.csproj
29
30
- name: 📤 Upload Artifacts
31
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
32
with:
33
name: nupkg
34
path: src/todo/nupkg/*.nupkg
@@ -41,7 +41,7 @@ jobs:
41
if: github.ref == 'refs/heads/main'
42
43
- name: 📥 Download Artifacts
44
- uses: actions/download-artifact@v3
+ uses: actions/download-artifact@v4
45
46
47
0 commit comments