From 33db817b7320191b78ea1f62d32a5abcc520b4a9 Mon Sep 17 00:00:00 2001 From: Eddie A Tejeda <669988+eddietejeda@users.noreply.github.com> Date: Wed, 20 May 2026 09:46:46 -0700 Subject: [PATCH] fix: correct action-gh-release pin in release workflow The previous SHA was invalid and caused GitHub Release creation to fail on tag push. --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 66c6c1e..826a0cf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -45,7 +45,7 @@ jobs: } >> "$GITHUB_OUTPUT" - name: Create GitHub Release - uses: softprops/action-gh-release@1e812e8210a4a8a0b23075e5795f2a4e2b2a0b7 # v2.2.2 + uses: softprops/action-gh-release@da05d552573ad5aba039eaac05058a918a7bf631 # v2.2.2 with: tag_name: ${{ github.ref_name }} name: ${{ steps.meta.outputs.name }} ${{ steps.meta.outputs.version }}