From d42cccf8b7c9746b1a6c2605ba51964b9c8a8e37 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Jun 2026 23:16:55 +0000 Subject: [PATCH 1/6] build(deps): bump codecov/codecov-action in the actions group Bumps the actions group with 1 update: [codecov/codecov-action](https://github.com/codecov/codecov-action). Updates `codecov/codecov-action` from 6.0.0 to 6.0.1 - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/57e3a136b779b570ffcdbf80b3bdc90e7fab3de2...e79a6962e0d4c0c17b229090214935d2e33f8354) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-version: 6.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/coverage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index d469adc4..e49b2098 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -67,7 +67,7 @@ jobs: pattern: coverage-* merge-multiple: true - name: Upload coverage to codecov - uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6.0.0 + uses: codecov/codecov-action@e79a6962e0d4c0c17b229090214935d2e33f8354 # v6.0.1 with: use_oidc: true From 17517897b83362625f38391695091d56e44b1c1d Mon Sep 17 00:00:00 2001 From: mayeut Date: Fri, 5 Jun 2026 21:21:51 +0200 Subject: [PATCH 2/6] Update coverage.yml --- .github/workflows/coverage.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index e49b2098..adc42a22 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -33,6 +33,9 @@ jobs: if: runner.arch == 'X64' run: | curl -fsSLo ${HOME}/sde.tar.xz https://downloadmirror.intel.com/915934/sde-external-10.8.0-2026-03-15-lin.tar.xz + ls -al ${HOME} + sha256sum ${HOME}/sde.tar.xz + # echo "50b320cd226acef7a491f5b321fc1be3c3c7984f9e27a456e64894b5b0979dd3 ${HOME}/sde.tar.xz" | sha256sum -c - mkdir ${HOME}/sde tar -C ${HOME}/sde --strip-components 1 -xf ${HOME}/sde.tar.xz echo "PATH=${HOME}/sde:${PATH}" >> $GITHUB_ENV From adbcbfb5fd56c26530e526a733c890e2d053ed3e Mon Sep 17 00:00:00 2001 From: mayeut Date: Mon, 8 Jun 2026 08:26:26 +0200 Subject: [PATCH 3/6] Update coverage.yml --- .github/workflows/coverage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index adc42a22..a3507de8 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -32,7 +32,7 @@ jobs: - name: Install Intel SDE if: runner.arch == 'X64' run: | - curl -fsSLo ${HOME}/sde.tar.xz https://downloadmirror.intel.com/915934/sde-external-10.8.0-2026-03-15-lin.tar.xz + curl -vfsSLo ${HOME}/sde.tar.xz https://downloadmirror.intel.com/915934/sde-external-10.8.0-2026-03-15-lin.tar.xz ls -al ${HOME} sha256sum ${HOME}/sde.tar.xz # echo "50b320cd226acef7a491f5b321fc1be3c3c7984f9e27a456e64894b5b0979dd3 ${HOME}/sde.tar.xz" | sha256sum -c - From e3e1a496c42a65ceb2f24e039ee3dab2e25d8273 Mon Sep 17 00:00:00 2001 From: mayeut Date: Tue, 9 Jun 2026 21:13:05 +0200 Subject: [PATCH 4/6] Update coverage.yml --- .github/workflows/coverage.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index a3507de8..95d09752 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -32,10 +32,10 @@ jobs: - name: Install Intel SDE if: runner.arch == 'X64' run: | - curl -vfsSLo ${HOME}/sde.tar.xz https://downloadmirror.intel.com/915934/sde-external-10.8.0-2026-03-15-lin.tar.xz + # https://downloadmirror.intel.com/915934/sde-external-10.8.0-2026-03-15-lin.tar.xz + curl -fsSLo ${HOME}/sde.tar.xz https://github.com/nihui/ncnn-assets/releases/download/toolchain/sde-external-10.8.0-2026-03-15-lin.tar.xz ls -al ${HOME} - sha256sum ${HOME}/sde.tar.xz - # echo "50b320cd226acef7a491f5b321fc1be3c3c7984f9e27a456e64894b5b0979dd3 ${HOME}/sde.tar.xz" | sha256sum -c - + echo "50b320cd226acef7a491f5b321fc1be3c3c7984f9e27a456e64894b5b0979dd3 ${HOME}/sde.tar.xz" | sha256sum -c - mkdir ${HOME}/sde tar -C ${HOME}/sde --strip-components 1 -xf ${HOME}/sde.tar.xz echo "PATH=${HOME}/sde:${PATH}" >> $GITHUB_ENV From 75969981a5fd371f6237627329e9478b1c75e2cd Mon Sep 17 00:00:00 2001 From: mayeut Date: Tue, 9 Jun 2026 22:31:06 +0200 Subject: [PATCH 5/6] Update coverage.yml --- .github/workflows/coverage.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 95d09752..e6bed9a2 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -33,7 +33,8 @@ jobs: if: runner.arch == 'X64' run: | # https://downloadmirror.intel.com/915934/sde-external-10.8.0-2026-03-15-lin.tar.xz - curl -fsSLo ${HOME}/sde.tar.xz https://github.com/nihui/ncnn-assets/releases/download/toolchain/sde-external-10.8.0-2026-03-15-lin.tar.xz + # https://github.com/nihui/ncnn-assets/releases/download/toolchain/sde-external-10.8.0-2026-03-15-lin.tar.xz + curl -fsSLo ${HOME}/sde.tar.xz https://github.com/petarpetrovt/setup-sde/releases/download/binaries/sde-external-10.8.0-2026-03-15-lin.tar.xz ls -al ${HOME} echo "50b320cd226acef7a491f5b321fc1be3c3c7984f9e27a456e64894b5b0979dd3 ${HOME}/sde.tar.xz" | sha256sum -c - mkdir ${HOME}/sde From 24e4bb3336f1fb1a2bc5418555d5c8b746e9300e Mon Sep 17 00:00:00 2001 From: mayeut Date: Wed, 10 Jun 2026 06:49:34 +0200 Subject: [PATCH 6/6] Update coverage.yml --- .github/workflows/coverage.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index e6bed9a2..82d90665 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -35,7 +35,6 @@ jobs: # https://downloadmirror.intel.com/915934/sde-external-10.8.0-2026-03-15-lin.tar.xz # https://github.com/nihui/ncnn-assets/releases/download/toolchain/sde-external-10.8.0-2026-03-15-lin.tar.xz curl -fsSLo ${HOME}/sde.tar.xz https://github.com/petarpetrovt/setup-sde/releases/download/binaries/sde-external-10.8.0-2026-03-15-lin.tar.xz - ls -al ${HOME} echo "50b320cd226acef7a491f5b321fc1be3c3c7984f9e27a456e64894b5b0979dd3 ${HOME}/sde.tar.xz" | sha256sum -c - mkdir ${HOME}/sde tar -C ${HOME}/sde --strip-components 1 -xf ${HOME}/sde.tar.xz