From 6de991eb6a43cad8e6ad77fe622a4bd6c04f60b9 Mon Sep 17 00:00:00 2001 From: "John L. Villalovos" Date: Sat, 7 Jun 2025 09:14:25 -0700 Subject: [PATCH] build(release): use correct python-semantic-release/publish-action The previous 'python-semantic-release/upload-to-gh-release' action has been deprecated. Closes: #3210 --- .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 72f22f125..7779cdbcb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,7 +32,7 @@ jobs: if: steps.release.outputs.released == 'true' - name: Publish package distributions to GitHub Releases - uses: python-semantic-release/upload-to-gh-release@0a92b5d7ebfc15a84f9801ebd1bf706343d43711 # v9.8.9 + uses: python-semantic-release/publish-action@v10.0.2 if: steps.release.outputs.released == 'true' with: github_token: ${{ secrets.GITHUB_TOKEN }}