Skip to content

Commit

Permalink
chore: Update actions/upload-artifact to v4.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
DannyBedard authored and rbstp committed Sep 20, 2024
1 parent e547630 commit bc2cbcd
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/native/native-build-ios/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ runs:
mkdir output
mv ./ios ./output/ios
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v4.3.6
with:
name: native-ios
path: wrappers/csharp/output/**
2 changes: 1 addition & 1 deletion .github/workflows/native/native-build-linux/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ runs:
python GeneratePackage.py -p android
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v4.3.6
with:
name: native-android-linux
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/native/native-build-macos/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ runs:
source $HOME/.cargo/env
python3 GeneratePackage.py -p mac-modern
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v4.3.6
with:
name: native-macos
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/native/native-build-windows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ runs:
run: |
python GeneratePackage.py -p dotnet-core
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v4.3.6
with:
name: native-windows
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nugets/nugets-linux/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ runs:
shell: bash
run: mv wrappers/csharp/nuget/Linux/package/*.nupkg .

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v4.3.6
with:
name: nugets-linux
path: ./*.nupkg
2 changes: 1 addition & 1 deletion .github/workflows/nugets/nugets-macos/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ runs:
mv wrappers/csharp/nuget/macOS/Modern/Devolutions.Crypto.Mac/package/*.nupkg .
mv wrappers/csharp/nuget/Android/Devolutions.Crypto.Android/package/*.nupkg .
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v4.3.6
with:
name: nugets-macos
path: ./*.nupkg
3 changes: 1 addition & 2 deletions .github/workflows/nugets/nugets-windows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ runs:
pattern: native-*
merge-multiple: true
path: ./wrappers/csharp


- name: Downloading nuget
working-directory: ./wrappers/csharp/nuget
Expand All @@ -42,7 +41,7 @@ runs:
mv wrappers/csharp/nuget/Windows/package/*.nupkg .
mv wrappers/csharp/nuget/dotnet-core/package/*.nupkg .
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v4.3.6
with:
name: nugets-windows
path: ./*.nupkg
2 changes: 1 addition & 1 deletion .github/workflows/other/source-publish/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: This package the source code used for this build.
runs:
using: composite
steps:
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v4.3.6
with:
name: source
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/other/webassembly-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ runs:
npm install
npm test
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v4.3.6
with:
name: wasm
path: wrappers/wasm/dist/**
2 changes: 1 addition & 1 deletion .github/workflows/python/build/linux/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ runs:
run: |
mv target/wheels/*.whl .
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v4.3.6
with:
name: python-wheels-linux
path: ./*.whl
2 changes: 1 addition & 1 deletion .github/workflows/python/build/macos/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ runs:
run: |
mv target/wheels/*.whl .
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v4.3.6
with:
name: python-wheels-macos
path: ./*.whl
2 changes: 1 addition & 1 deletion .github/workflows/python/build/windows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ runs:
run: |
mv target/wheels/*.whl .
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v4.3.6
with:
name: python-wheels-windows
path: ./*.whl

0 comments on commit bc2cbcd

Please sign in to comment.