From 6ad084ab2c2bec73bba97395193e2b11680a773a Mon Sep 17 00:00:00 2001 From: leynos Date: Sat, 18 Jul 2026 18:18:18 +0200 Subject: [PATCH] Bump shared-actions pins to 18bed1ca Advance every leynos/shared-actions reference in this repo's own workflows and in the copier template sources (the .jinja workflow files under template/.github/workflows) to 18bed1ca49a6de3d8882bd72635a32ae3f023d57, shared-actions main HEAD, so newly generated projects start at the same pin. Picks up the coverage-ratchet baseline-advance fix and the symmetric +/-1pp dead-band (shared-actions#353), plus routine follow-ups. --- .github/workflows/act-validation.yml | 2 +- .github/workflows/ci.yml | 2 +- .github/workflows/dependabot-automerge.yml | 2 +- template/.github/workflows/act-validation.yml.jinja | 2 +- template/.github/workflows/ci.yml.jinja | 4 ++-- template/.github/workflows/coverage-main.yml.jinja | 6 +++--- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/act-validation.yml b/.github/workflows/act-validation.yml index 179f07e..ed0b31a 100644 --- a/.github/workflows/act-validation.yml +++ b/.github/workflows/act-validation.yml @@ -30,7 +30,7 @@ jobs: uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0 - name: Set up Rust - uses: leynos/shared-actions/.github/actions/setup-rust@3c1fa01bcf4c26dac79975c18b74c01d577dcf95 + uses: leynos/shared-actions/.github/actions/setup-rust@18bed1ca49a6de3d8882bd72635a32ae3f023d57 with: toolchain: stable diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ee6f964..fd279bb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,7 @@ jobs: uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0 - name: Set up Rust - uses: leynos/shared-actions/.github/actions/setup-rust@3c1fa01bcf4c26dac79975c18b74c01d577dcf95 + uses: leynos/shared-actions/.github/actions/setup-rust@18bed1ca49a6de3d8882bd72635a32ae3f023d57 with: toolchain: stable diff --git a/.github/workflows/dependabot-automerge.yml b/.github/workflows/dependabot-automerge.yml index 0f7085c..6f18e3b 100644 --- a/.github/workflows/dependabot-automerge.yml +++ b/.github/workflows/dependabot-automerge.yml @@ -28,6 +28,6 @@ jobs: # The token is not used for any external cloud auth. id-token: write if: ${{ github.event_name == 'workflow_dispatch' || github.actor == 'dependabot[bot]' }} - uses: leynos/shared-actions/.github/workflows/dependabot-automerge.yml@3c1fa01bcf4c26dac79975c18b74c01d577dcf95 + uses: leynos/shared-actions/.github/workflows/dependabot-automerge.yml@18bed1ca49a6de3d8882bd72635a32ae3f023d57 with: pull-request-number: ${{ inputs.pull-request-number || github.event.pull_request.number }} diff --git a/template/.github/workflows/act-validation.yml.jinja b/template/.github/workflows/act-validation.yml.jinja index c76ea3c..18447af 100644 --- a/template/.github/workflows/act-validation.yml.jinja +++ b/template/.github/workflows/act-validation.yml.jinja @@ -31,7 +31,7 @@ jobs: {% if use_rust %} - name: Set up Rust - uses: leynos/shared-actions/.github/actions/setup-rust@455d9ed03477c0026da96c2541ca26569a74acac + uses: leynos/shared-actions/.github/actions/setup-rust@18bed1ca49a6de3d8882bd72635a32ae3f023d57 with: toolchain: stable diff --git a/template/.github/workflows/ci.yml.jinja b/template/.github/workflows/ci.yml.jinja index ead5e3d..eb5d20f 100644 --- a/template/.github/workflows/ci.yml.jinja +++ b/template/.github/workflows/ci.yml.jinja @@ -35,7 +35,7 @@ jobs: {% if use_rust %} - name: Set up Rust - uses: leynos/shared-actions/.github/actions/setup-rust@927edd45ae77be4251a8a18ca9eb5613a2e32cbd + uses: leynos/shared-actions/.github/actions/setup-rust@18bed1ca49a6de3d8882bd72635a32ae3f023d57 with: toolchain: stable @@ -91,7 +91,7 @@ jobs: # the work and the CodeScene upload for the same commit. - name: Test and Measure Coverage if: ${{ "{{" }} github.event_name == 'pull_request' {{ "}}" }} - uses: leynos/shared-actions/.github/actions/generate-coverage@927edd45ae77be4251a8a18ca9eb5613a2e32cbd + uses: leynos/shared-actions/.github/actions/generate-coverage@18bed1ca49a6de3d8882bd72635a32ae3f023d57 with: output-path: coverage.xml format: cobertura diff --git a/template/.github/workflows/coverage-main.yml.jinja b/template/.github/workflows/coverage-main.yml.jinja index 79971c3..3105201 100644 --- a/template/.github/workflows/coverage-main.yml.jinja +++ b/template/.github/workflows/coverage-main.yml.jinja @@ -46,13 +46,13 @@ jobs: {% if use_rust %} - name: Set up Rust - uses: leynos/shared-actions/.github/actions/setup-rust@927edd45ae77be4251a8a18ca9eb5613a2e32cbd + uses: leynos/shared-actions/.github/actions/setup-rust@18bed1ca49a6de3d8882bd72635a32ae3f023d57 with: toolchain: stable {% endif %} - name: Generate coverage - uses: leynos/shared-actions/.github/actions/generate-coverage@927edd45ae77be4251a8a18ca9eb5613a2e32cbd + uses: leynos/shared-actions/.github/actions/generate-coverage@18bed1ca49a6de3d8882bd72635a32ae3f023d57 with: output-path: coverage.xml format: cobertura @@ -64,7 +64,7 @@ jobs: - name: Upload coverage data to CodeScene if: env.CS_ACCESS_TOKEN != '' - uses: leynos/shared-actions/.github/actions/upload-codescene-coverage@927edd45ae77be4251a8a18ca9eb5613a2e32cbd + uses: leynos/shared-actions/.github/actions/upload-codescene-coverage@18bed1ca49a6de3d8882bd72635a32ae3f023d57 with: format: cobertura path: coverage.xml