From 458ffd002aa92d791dd3f6976b0d78e3b62049cf Mon Sep 17 00:00:00 2001 From: federico jaureguialzo Date: Thu, 28 Dec 2023 21:13:43 +0100 Subject: [PATCH] Update pypa/gh-action-pypi-publishe (1.8.10 -> 1.8.11) --- CHANGELOG.md | 1 + {{cookiecutter.project_name}}/.github/workflows/release.yml | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c36c45c0..fef0c78d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - pre-commit from `^3.5.0` to `^3.6.0`. - github/codeql-action from `v2` to `v3`. - coverage from `^7.3.2` to `^7.4.0`. +- pypa/gh-action-pypi-publish from from `v1.8.10` to `v1.8.11`. ### Removed - falke8 and flakeheaven. diff --git a/{{cookiecutter.project_name}}/.github/workflows/release.yml b/{{cookiecutter.project_name}}/.github/workflows/release.yml index 2a37b99a..524fd673 100644 --- a/{{cookiecutter.project_name}}/.github/workflows/release.yml +++ b/{{cookiecutter.project_name}}/.github/workflows/release.yml @@ -28,13 +28,13 @@ jobs: poetry build --ansi {% if is_open_source %}{% raw %} - name: Publish package on PyPI - uses: pypa/gh-action-pypi-publish@v1.8.10 + uses: pypa/gh-action-pypi-publish@v1.8.11 with: user: __token__ password: ${{ secrets.PYPI_TOKEN }} - name: Publish package on TestPyPI - uses: pypa/gh-action-pypi-publish@v1.8.10 + uses: pypa/gh-action-pypi-publish@v1.8.11 with: user: __token__ password: ${{ secrets.TEST_PYPI_TOKEN }}