Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update actions/upload-artifact action to v4 #1570

Merged
merged 1 commit into from
Dec 14, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,61 +200,61 @@ jobs:
# only store binlog on failure
- name: store binlogs
if: ${{ failure() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: binlogs
path: artifacts/binlog

- name: store unit test coverage
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: unittestcoverage
path: artifacts/unittestcoverage

- name: store docfx
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: docfx
path: artifacts/docfx

- name: store nuget packages
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: nuget
path: artifacts/nuget

- name: store omd
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: omd
path: artifacts/omd

- name: store licenses
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: licenses
path: artifacts/licenses

- name: store sbom
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: sbom
path: artifacts/sbom

- name: store outdated
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: outdated
path: artifacts/outdated

- name: store snitch
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: snitch
path: artifacts/snitch

- name: store appinspector
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: appinspector
path: artifacts/appinspector
Expand Down
Loading