From c22994aad5ff436ef7f8b4418cda88230db3a72e Mon Sep 17 00:00:00 2001 From: Isaac Da Pena <56054255+idapena@users.noreply.github.com> Date: Wed, 30 Jul 2025 12:37:01 +0200 Subject: [PATCH] Update publish-to-pypi.yml workflow --- .github/workflows/publish-to-pypi.yml | 4 ++-- docs/release-notes.md | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-to-pypi.yml b/.github/workflows/publish-to-pypi.yml index 19b2668..80766ee 100644 --- a/.github/workflows/publish-to-pypi.yml +++ b/.github/workflows/publish-to-pypi.yml @@ -26,7 +26,7 @@ jobs: run: python -m build - name: Store the distribution packages - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: python-package-distributions path: dist/ @@ -46,7 +46,7 @@ jobs: steps: - name: Download all the dists - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: python-package-distributions path: dist/ diff --git a/docs/release-notes.md b/docs/release-notes.md index 3887fce..b0c69c8 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -19,6 +19,7 @@ hide: ##### Changed - Updated the lower bound variable definition in `pulp_engine` to set it to `None` when `-inf` is specified as the lower bound. +- Upgraded the `download-artifact` and `cache` actions to `v4` in the `publish-to-pypi.yml` workflow. ##### Fixed