From bfafdf2896c713c5d4172ee174843c7207810bc8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Jun 2024 12:34:24 +0000 Subject: [PATCH] NO-JIRA Bump madhead/semver-utils Bumps [madhead/semver-utils](https://github.com/madhead/semver-utils) from 40bbdc6e50b258c09f35f574e83c51f60d2ce3a2 to ed58b1e544d13426a67fea39cb19638b3c5623d4. - [Release notes](https://github.com/madhead/semver-utils/releases) - [Commits](https://github.com/madhead/semver-utils/compare/40bbdc6e50b258c09f35f574e83c51f60d2ce3a2...ed58b1e544d13426a67fea39cb19638b3c5623d4) --- updated-dependencies: - dependency-name: madhead/semver-utils dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: Benjamin Raymond <31401273+7PH@users.noreply.github.com> --- .github/workflows/update-tags.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update-tags.yml b/.github/workflows/update-tags.yml index a07d193..13953b7 100644 --- a/.github/workflows/update-tags.yml +++ b/.github/workflows/update-tags.yml @@ -16,7 +16,7 @@ jobs: uses: actions/checkout@v4 - name: Parse semver - uses: madhead/semver-utils@40bbdc6e50b258c09f35f574e83c51f60d2ce3a2 # v4.0.0 + uses: madhead/semver-utils@v4 id: version with: version: ${{ github.ref_name }} @@ -24,7 +24,7 @@ jobs: - name: Update tags run: | TAGS='v${{ steps.version.outputs.major }} v${{ steps.version.outputs.major }}.${{ steps.version.outputs.minor }}' - + for t in $TAGS; do git tag -f "$t" git push origin ":$t" 2>/dev/null || true