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

Bump actions/upload-artifact from 3 to 4 #1407

Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
cmd /c "$env:VSDevCmd" "&" msbuild /m /clp:ForceConsoleColor "$env:msbuild_config_props" cppwinrt.sln /t:cppwinrt

- name: Upload built executables
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: msvc-build-${{ matrix.arch }}-${{ matrix.config }}-bin
path: |
Expand Down Expand Up @@ -240,7 +240,7 @@ jobs:

- name: Upload arm64 test executables
if: matrix.arch == 'arm64'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: msvc-tests-${{ matrix.arch }}-${{ matrix.config }}-bin
path: |
Expand Down Expand Up @@ -279,7 +279,7 @@ jobs:
cmake --build build/cross_x64/ --target install -j2

- name: Upload cppwinrt.exe
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: cross-build-${{ matrix.arch }}-bin
path: install/bin/cppwinrt.exe
Expand Down Expand Up @@ -396,7 +396,7 @@ jobs:
}

- name: Upload nuget package artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: package
path: "*.nupkg"
Loading