Skip to content

Commit 7ca11a9

Browse files
Upgrade the upload-artifact or download-artifact actions (#9565)
### Motivation and Context Breaking changes coming to the GitHub Actions product. [Details are posted in the GitHub Changelog](https://github.blog/changelog/2024-11-05-notice-of-breaking-changes-for-github-actions/). If you use the upload-artifact or download-artifact actions, be sure you have updated your workflows to v4 Closes #9563 ### Description <!-- Describe your changes, the overall approach, the underlying design. These notes will help understanding how your code works. Thanks! --> ### Contribution Checklist <!-- Before submitting this PR, please make sure: --> - [ ] The code builds clean without any errors or warnings - [ ] The PR follows the [SK Contribution Guidelines](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md) and the [pre-submission formatting script](https://github.com/microsoft/semantic-kernel/blob/main/CONTRIBUTING.md#development-scripts) raises no violations - [ ] All unit tests pass, and I have added new tests where possible - [ ] I didn't break anyone 😄
1 parent 7b22f00 commit 7ca11a9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/dotnet-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
done
5555
5656
- name: Upload dotnet test results
57-
uses: actions/upload-artifact@v3
57+
uses: actions/upload-artifact@v4
5858
with:
5959
name: dotnet-testresults-${{ matrix.configuration }}
6060
path: ./TestResults
@@ -120,7 +120,7 @@ jobs:
120120
done
121121
122122
- name: Upload dotnet test results
123-
uses: actions/upload-artifact@v3
123+
uses: actions/upload-artifact@v4
124124
with:
125125
name: dotnet-testresults-${{ matrix.configuration }}
126126
path: ./TestResults

.github/workflows/dotnet-integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
done
5959
6060
- name: Upload dotnet test results
61-
uses: actions/upload-artifact@v3
61+
uses: actions/upload-artifact@v4
6262
with:
6363
name: dotnet-testresults-${{ matrix.configuration }}
6464
path: ./TestResults

0 commit comments

Comments
 (0)