Skip to content

Commit dc08ad9

Browse files
committed
Update GitHub Actions to use latest versions of checkout, upload-artifact, and download-artifact actions
1 parent 1b50b5e commit dc08ad9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/dotnet-core.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
steps:
1515
- name: 📥 Checkout Code
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717

1818
- name: 💉 Install dependencies
1919
run: dotnet restore
@@ -28,7 +28,7 @@ jobs:
2828
run: dotnet pack --no-build --configuration Release src/todo/todo.csproj
2929

3030
- name: 📤 Upload Artifacts
31-
uses: actions/upload-artifact@v3
31+
uses: actions/upload-artifact@v4
3232
with:
3333
name: nupkg
3434
path: src/todo/nupkg/*.nupkg
@@ -41,7 +41,7 @@ jobs:
4141
if: github.ref == 'refs/heads/main'
4242
steps:
4343
- name: 📥 Download Artifacts
44-
uses: actions/download-artifact@v3
44+
uses: actions/download-artifact@v4
4545
with:
4646
name: nupkg
4747

0 commit comments

Comments
 (0)