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
6 changes: 3 additions & 3 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
run: |
python -m pip install build
python -m build --wheel --outdir wheelhouse/
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
with:
name: wheels
path: ./wheelhouse/*.whl
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
- name: Build
run: |
python3 setup.py sdist
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
with:
name: wheels
path: dist/*
Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v3
with:
name: wheels
path: dist
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/java_master_only.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
${{ runner.os }}-ut-maven-
- name: Test java
run: make test-java-with-coverage
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
with:
name: java-coverage-report
path: ${{ github.workspace }}/docs/coverage/java/target/site/jacoco-aggregate/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/java_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
${{ runner.os }}-ut-maven-
- name: Test java
run: make test-java-with-coverage
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
with:
name: java-coverage-report
path: ${{ github.workspace }}/docs/coverage/java/target/site/jacoco-aggregate/
Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:
- name: Run integration tests
run: make test-java-integration
- name: Save report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
if: failure()
with:
name: it-report
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ jobs:
runs-on: ubuntu-latest
needs: [build_wheels]
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v3
with:
name: wheels
path: dist
Expand Down