From 51b80a5203a32c924ef750190a4d98b0a8d9b420 Mon Sep 17 00:00:00 2001 From: Marco Edoardo Santimaria <39337626+marcoSanti@users.noreply.github.com> Date: Tue, 3 Mar 2026 17:47:47 +0000 Subject: [PATCH 1/2] Added dependabot for actions upgrade (#61) --- .github/workflows/ci-test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index 73fd442..f800b8b 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -67,6 +67,7 @@ jobs: upload-to-codecov: name: "compute Codecov" needs: [ "unit-tests"] + if: ${{ needs.check-tag-existance.outputs.exists == 'false' }} runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -125,6 +126,7 @@ jobs: build-documentation: name: "Build Doxygen documentation" runs-on: ubuntu-latest + if: ${{ needs.check-tag-existance.outputs.exists == 'false' }} needs: upload-to-codecov steps: - uses: actions/checkout@v4 @@ -145,6 +147,7 @@ jobs: codespell-check: name: "Check codespell conformance" needs: upload-to-codecov + if: ${{ needs.check-tag-existance.outputs.exists == 'false' }} runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -154,6 +157,7 @@ jobs: format-check: name: "Check ${{ matrix.path }} clang-format conformance" needs: upload-to-codecov + if: ${{ needs.check-tag-existance.outputs.exists == 'false' }} runs-on: ubuntu-latest strategy: matrix: From 7a6582c62bc6e80187f5614e54e3ceb84ab1400f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Mar 2026 17:50:00 +0000 Subject: [PATCH 2/2] Bump uraimo/run-on-arch-action from 2 to 3 Bumps [uraimo/run-on-arch-action](https://github.com/uraimo/run-on-arch-action) from 2 to 3. - [Release notes](https://github.com/uraimo/run-on-arch-action/releases) - [Commits](https://github.com/uraimo/run-on-arch-action/compare/v2...v3) --- updated-dependencies: - dependency-name: uraimo/run-on-arch-action dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-test.yml | 6 +----- .github/workflows/python-bindings.yml | 2 +- .github/workflows/release.yml | 2 +- 3 files changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index f800b8b..f8b7748 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -67,7 +67,6 @@ jobs: upload-to-codecov: name: "compute Codecov" needs: [ "unit-tests"] - if: ${{ needs.check-tag-existance.outputs.exists == 'false' }} runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -126,7 +125,6 @@ jobs: build-documentation: name: "Build Doxygen documentation" runs-on: ubuntu-latest - if: ${{ needs.check-tag-existance.outputs.exists == 'false' }} needs: upload-to-codecov steps: - uses: actions/checkout@v4 @@ -147,7 +145,6 @@ jobs: codespell-check: name: "Check codespell conformance" needs: upload-to-codecov - if: ${{ needs.check-tag-existance.outputs.exists == 'false' }} runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -157,7 +154,6 @@ jobs: format-check: name: "Check ${{ matrix.path }} clang-format conformance" needs: upload-to-codecov - if: ${{ needs.check-tag-existance.outputs.exists == 'false' }} runs-on: ubuntu-latest strategy: matrix: @@ -174,4 +170,4 @@ jobs: with: source: ${{matrix.path}} extensions: 'h,cpp,c' - clangFormatVersion: 20 + clangFormatVersion: 20 \ No newline at end of file diff --git a/.github/workflows/python-bindings.yml b/.github/workflows/python-bindings.yml index 8b09661..4dc83ab 100644 --- a/.github/workflows/python-bindings.yml +++ b/.github/workflows/python-bindings.yml @@ -105,7 +105,7 @@ jobs: uses: actions/checkout@v4 - name: "Build and test inside RISC-V emulated environment (Debian based)" - uses: uraimo/run-on-arch-action@v2 + uses: uraimo/run-on-arch-action@v3 with: arch: riscv64 distro: ubuntu_latest diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e8511ad..81f3e70 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -82,7 +82,7 @@ jobs: uses: actions/checkout@v4 - name: "Build and test inside RISC-V emulated environment (Debian based)" - uses: uraimo/run-on-arch-action@v2 + uses: uraimo/run-on-arch-action@v3 with: arch: riscv64 distro: ubuntu22.04