From 68c786a36bc23518b2a3c9713c12697cf966a2ca 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 e503b21b592be3d6addcb83c455b1bbb1c2895b4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Mar 2026 17:50:16 +0000 Subject: [PATCH 2/2] Bump mukunku/tag-exists-action from 1.6.0 to 1.7.0 Bumps [mukunku/tag-exists-action](https://github.com/mukunku/tag-exists-action) from 1.6.0 to 1.7.0. - [Release notes](https://github.com/mukunku/tag-exists-action/releases) - [Commits](https://github.com/mukunku/tag-exists-action/compare/v1.6.0...v1.7.0) --- updated-dependencies: - dependency-name: mukunku/tag-exists-action dependency-version: 1.7.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-test.yml | 4 ---- .github/workflows/release.yml | 2 +- 2 files changed, 1 insertion(+), 5 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..10d5a1c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,7 +21,7 @@ jobs: run: echo "CAPIO_CL_VERSION=$(grep -E 'VERSION [0-9]+\.[0-9]+\.[0-9]+' CMakeLists.txt | awk '{print $2}')" >> $GITHUB_ENV - name: "Check if tag exists" id: check-tag - uses: mukunku/tag-exists-action@v1.6.0 + uses: mukunku/tag-exists-action@v1.7.0 with: tag: "v${{ env.CAPIO_CL_VERSION }}"