From b2e20444f5c1489ab948a54dd8eab4b4cc42efa2 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 df6ad2946d5865187a64c42bbd16b2a488b4a14c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Mar 2026 17:50:12 +0000 Subject: [PATCH 2/2] Bump actions/setup-python from 5 to 6 Bumps [actions/setup-python](https://github.com/actions/setup-python) from 5 to 6. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-test.yml | 4 ---- .github/workflows/release.yml | 4 ++-- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index f800b8b..73fd442 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: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e8511ad..06d4d71 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -164,7 +164,7 @@ jobs: - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: "3.x" @@ -195,7 +195,7 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v6 with: python-version: "3.x"