Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit bd664dc

Browse files
committedJun 11, 2025·
Update dependencies.
1 parent 1b83553 commit bd664dc

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed
 

‎.github/workflows/build_wheels_linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,12 @@ jobs:
6565
- name: Build a package
6666
run: source scripts/build.sh
6767
- name: Saving all wheels
68-
uses: actions/upload-artifact@v3
68+
uses: actions/upload-artifact@v4
6969
with:
7070
name: wheels
7171
path: wheelhouse/opencv*.whl
7272
- name: Saving a wheel accordingly to matrix
73-
uses: actions/upload-artifact@v3
73+
uses: actions/upload-artifact@v4
7474
with:
7575
name: wheel-${{ matrix.with_contrib }}-${{ matrix.without_gui }}-${{ matrix.build_sdist }}
7676
path: wheelhouse/opencv*.whl
@@ -177,7 +177,7 @@ jobs:
177177
set -x
178178
echo "skipping tests because of sdist"
179179
- name: saving artifacts
180-
uses: actions/upload-artifact@v3
180+
uses: actions/upload-artifact@v4
181181
with:
182182
name: wheels
183183
path: dist/opencv*.tar.gz

‎.github/workflows/build_wheels_linux_arm.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,12 @@ jobs:
6565
- name: Build a package
6666
run: source scripts/build.sh
6767
- name: Saving all wheels
68-
uses: actions/upload-artifact@v3
68+
uses: actions/upload-artifact@v4
6969
with:
7070
name: wheels
7171
path: wheelhouse/opencv*.whl
7272
- name: Saving a wheel accordingly to matrix
73-
uses: actions/upload-artifact@v3
73+
uses: actions/upload-artifact@v4
7474
with:
7575
name: wheel-${{ matrix.with_contrib }}-${{ matrix.without_gui }}-${{ matrix.build_sdist }}
7676
path: wheelhouse/opencv*.whl

‎.github/workflows/build_wheels_macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,12 @@ jobs:
8686
set -x
8787
build_wheel $REPO_DIR $PLAT
8888
- name: Saving all wheels
89-
uses: actions/upload-artifact@v3
89+
uses: actions/upload-artifact@v4
9090
with:
9191
name: wheels
9292
path: wheelhouse/opencv*.whl
9393
- name: Saving a wheel accordingly to matrix
94-
uses: actions/upload-artifact@v3
94+
uses: actions/upload-artifact@v4
9595
with:
9696
name: wheel-${{ matrix.with_contrib }}-${{ matrix.without_gui }}-${{ matrix.build_sdist }}
9797
path: wheelhouse/opencv*.whl

‎.github/workflows/build_wheels_macos_m1.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,12 @@ jobs:
5959
python${{ matrix.python-version }} setup.py bdist_wheel --py-limited-api=cp37 --dist-dir=wheelhouse -v
6060
delocate-wheel ${{ github.workspace }}/wheelhouse/opencv*
6161
- name: Saving all wheels
62-
uses: actions/upload-artifact@v3
62+
uses: actions/upload-artifact@v4
6363
with:
6464
name: wheels
6565
path: wheelhouse/opencv*.whl
6666
- name: Saving a wheel accordingly to matrix
67-
uses: actions/upload-artifact@v3
67+
uses: actions/upload-artifact@v4
6868
with:
6969
name: wheel-${{ matrix.with_contrib }}-${{ matrix.without_gui }}-${{ matrix.build_sdist }}
7070
path: wheelhouse/opencv*.whl

0 commit comments

Comments
 (0)
Please sign in to comment.