diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c9653b87..3c547769 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -231,7 +231,7 @@ jobs: - name: "Run Poetry Build" run: "poetry build" - name: "Push to PyPI" - uses: "pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc" # v1.12.4 + uses: "pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e" # v1.13.0 with: user: "__token__" password: "${{ secrets.PYPI_API_TOKEN }}" diff --git a/changes/352.housekeeping b/changes/352.housekeeping new file mode 100644 index 00000000..79a612a4 --- /dev/null +++ b/changes/352.housekeeping @@ -0,0 +1 @@ +Update pypa/gh-action-pypi-publish action to v1.13.0 diff --git a/renovate.json b/renovate.json index 7190a60b..be69379b 100644 --- a/renovate.json +++ b/renovate.json @@ -1,3 +1,24 @@ { - "$schema": "https://docs.renovatebot.com/renovate-schema.json" + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended" + ], + "prBodyColumns": [ + "Package", + "Type", + "Update", + "Change", + "Changelog" + ], + "prBodyDefinitions": { + "Changelog": "{{#if logJSON}}[Link]({{logJSON.0.url}}){{/if}}" + }, + "postUpgradeTasks": { + "commands": [ + "echo 'Update {{{depName}}} to {{{newVersion}}}' > changes/{{{prNumber}}}.housekeeping" + ], + "fileFilters": [ + "changes/**" + ] + } }