Skip to content

Commit 1c6b82d

Browse files
authored
Update upload-artifact action to v4, so that download-artifact actually works. (#279)
1 parent 7150c4b commit 1c6b82d

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
@@ -54,11 +54,11 @@ jobs:
5454
run: dotnet format --no-restore --verify-no-changes
5555
- name: Pack
5656
run: dotnet pack --output ./artifacts --configuration Release --no-build
57-
- uses: actions/upload-artifact@v2
57+
- uses: actions/upload-artifact@v4
5858
with:
5959
name: artifacts
6060
path: ./artifacts
61-
- uses: actions/upload-artifact@v2
61+
- uses: actions/upload-artifact@v4
6262
with:
6363
name: coverage
6464
path: ./**/TestResults/**/coverage.opencover.xml
@@ -102,7 +102,7 @@ jobs:
102102
dotnet-version: |
103103
8.0.x
104104
include-prerelease: true
105-
- uses: actions/download-artifact@v4.1.7
105+
- uses: actions/download-artifact@v4
106106
with:
107107
name: artifacts
108108
path: ./artifacts

0 commit comments

Comments
 (0)