Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/dotnet-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ jobs:
cargo build --release --target ${{ matrix.target }}

- name: 'Upload artifact'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: kcl-lib-${{ matrix.classifier }}
if-no-files-found: error
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:
dotnet build
dotnet pack

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: KCL .NET Nuget Package
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/java-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
run: mvn clean package -DskipTests=true -Djni.classifier=${{ matrix.classifier }} -Dcargo-build.profile=release

- name: 'Upload artifact'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: kcl-lib-${{ matrix.classifier }}
path: |
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
"

- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: kcl-lib
path: java/target/*.jar
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/kotlin-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
run: mvn clean package -DskipTests=true -Djni.classifier=${{ matrix.classifier }} -Dcargo-build.profile=release

- name: 'Upload artifact'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: kcl-lib-${{ matrix.classifier }}
path: |
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:
"

- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: kcl-lib
path: kotlin/target/*.jar
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nodejs-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ jobs:
shell: bash
working-directory: .
run: ${{ matrix.settings.build }}
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: bindings-linux-${{ matrix.settings.target }}
path: nodejs/*.node
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
- name: Build
shell: bash
run: ${{ matrix.settings.build }}
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: bindings-windows-${{ matrix.settings.target }}
path: nodejs/*.node
Expand Down Expand Up @@ -208,7 +208,7 @@ jobs:
- name: Build
run: ${{ matrix.settings.build }}
shell: bash
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: bindings-macos-${{ matrix.settings.target }}
path: nodejs/*.node
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/python-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
command: sdist
args: -o dist
- name: Upload sdist
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: sdist-${{ github.run_id }}
path: python/dist
Expand All @@ -60,7 +60,7 @@ jobs:
# Workaround ring 0.17 build issue
CFLAGS_aarch64_unknown_linux_gnu: "-D__ARM_ARCH=8"
- name: Upload wheels-linux-${{ matrix.target }}-${{ github.run_id }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: wheels-linux-${{ matrix.target }}-${{ github.run_id }}
path: python/dist
Expand All @@ -75,7 +75,7 @@ jobs:
command: build
args: --release -o dist --find-interpreter
- name: Upload wheels-windows-${{ github.run_id }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: wheels-windows-${{ github.run_id }}
path: python/dist
Expand All @@ -91,7 +91,7 @@ jobs:
target: universal2-apple-darwin
args: --release -o dist --find-interpreter
- name: Upload wheels-macos-${{ github.run_id }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: wheels-macos-${{ github.run_id }}
path: python/dist
Expand Down
Loading