From e4016c1f1973c1c317495b9eddf5526d830af798 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 19:22:51 +0000 Subject: [PATCH] Bump emibcn/badge-action from 2.0.2 to 2.0.3 Bumps [emibcn/badge-action](https://github.com/emibcn/badge-action) from 2.0.2 to 2.0.3. - [Release notes](https://github.com/emibcn/badge-action/releases) - [Commits](https://github.com/emibcn/badge-action/compare/v2.0.2...v2.0.3) --- updated-dependencies: - dependency-name: emibcn/badge-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/update-badges.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/update-badges.yml b/.github/workflows/update-badges.yml index a9e3e6c..b3ffc57 100644 --- a/.github/workflows/update-badges.yml +++ b/.github/workflows/update-badges.yml @@ -36,35 +36,35 @@ jobs: cat metrics.env >> "${GITHUB_OUTPUT}" mkdir -p badges - name: Generate the badge SVG image for the line coverage - uses: emibcn/badge-action@v2.0.2 + uses: emibcn/badge-action@v2.0.3 with: label: 'Lines' status: ${{ steps.metrics.outputs.line }}% color: 'green' path: badges/line-coverage.svg - name: Generate the badge SVG image for the branch coverage - uses: emibcn/badge-action@v2.0.2 + uses: emibcn/badge-action@v2.0.3 with: label: 'Branches' status: ${{ steps.metrics.outputs.branch }}% color: 'green' path: badges/branch-coverage.svg - name: Generate the badge SVG image for the mutation coverage - uses: emibcn/badge-action@v2.0.2 + uses: emibcn/badge-action@v2.0.3 with: label: 'Mutations' status: ${{ steps.metrics.outputs.mutation }}% color: 'green' path: badges/mutation-coverage.svg - name: Generate the badge SVG image for the style warnings - uses: emibcn/badge-action@v2.0.2 + uses: emibcn/badge-action@v2.0.3 with: label: 'Warnings' status: ${{ steps.metrics.outputs.style }} color: 'orange' path: badges/style.svg - name: Generate the badge SVG image for the bugs - uses: emibcn/badge-action@v2.0.2 + uses: emibcn/badge-action@v2.0.3 with: label: 'Bugs' status: ${{ steps.metrics.outputs.bugs }}