Skip to content

Commit 5f8ba92

Browse files
authored
fix: Revert artifact actions back to v3 (#4705)
fix: revert artifact actions back to v3 Signed-off-by: tokoko <[email protected]>
1 parent 673778b commit 5f8ba92

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/build_wheels.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
run: |
7373
python -m pip install build
7474
python -m build --wheel --outdir wheelhouse/
75-
- uses: actions/upload-artifact@v4
75+
- uses: actions/upload-artifact@v3
7676
with:
7777
name: wheels
7878
path: ./wheelhouse/*.whl
@@ -104,7 +104,7 @@ jobs:
104104
- name: Build
105105
run: |
106106
python3 setup.py sdist
107-
- uses: actions/upload-artifact@v4
107+
- uses: actions/upload-artifact@v3
108108
with:
109109
name: wheels
110110
path: dist/*
@@ -159,7 +159,7 @@ jobs:
159159
with:
160160
python-version: ${{ matrix.python-version }}
161161
architecture: x64
162-
- uses: actions/download-artifact@v4
162+
- uses: actions/download-artifact@v3
163163
with:
164164
name: wheels
165165
path: dist

.github/workflows/java_master_only.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
${{ runner.os }}-ut-maven-
8787
- name: Test java
8888
run: make test-java-with-coverage
89-
- uses: actions/upload-artifact@v4
89+
- uses: actions/upload-artifact@v3
9090
with:
9191
name: java-coverage-report
9292
path: ${{ github.workspace }}/docs/coverage/java/target/site/jacoco-aggregate/

.github/workflows/java_pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
${{ runner.os }}-ut-maven-
6868
- name: Test java
6969
run: make test-java-with-coverage
70-
- uses: actions/upload-artifact@v4
70+
- uses: actions/upload-artifact@v3
7171
with:
7272
name: java-coverage-report
7373
path: ${{ github.workspace }}/docs/coverage/java/target/site/jacoco-aggregate/
@@ -184,7 +184,7 @@ jobs:
184184
- name: Run integration tests
185185
run: make test-java-integration
186186
- name: Save report
187-
uses: actions/upload-artifact@v4
187+
uses: actions/upload-artifact@v3
188188
if: failure()
189189
with:
190190
name: it-report

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ jobs:
134134
runs-on: ubuntu-latest
135135
needs: [build_wheels]
136136
steps:
137-
- uses: actions/download-artifact@v4
137+
- uses: actions/download-artifact@v3
138138
with:
139139
name: wheels
140140
path: dist

0 commit comments

Comments
 (0)