From aa9a8651559af57538e690a7d0235510be30022e Mon Sep 17 00:00:00 2001 From: Srinivas Edireswarapu - I17752 Date: Fri, 4 Oct 2024 14:40:33 +0530 Subject: [PATCH] updated actions with latest upload-artifact and pypa release versions --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c473434b8..e30e51dc1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -51,7 +51,7 @@ jobs: CIBW_TEST_SKIP: "*-macosx_arm64 *-macosx_universal2:arm64" CMAKE_OSX_ARCHITECTURES: "arm64;x86_64" - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: path: wheelhouse/*.whl @@ -84,7 +84,7 @@ jobs: env: TAG_NAME: ${{ steps.build_names.outputs.TAG_NAME }} - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: path: python/dist/*.tar.gz @@ -101,7 +101,7 @@ jobs: - name: Production Release if: startsWith(github.repository, 'MicrochipTech') - uses: pypa/gh-action-pypi-publish@release/v1.5 + uses: pypa/gh-action-pypi-publish@release/v1.10.3 with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }} @@ -109,7 +109,7 @@ jobs: - name: Test Release if: ${{ !startsWith(github.repository, 'MicrochipTech') }} - uses: pypa/gh-action-pypi-publish@release/v1.5 + uses: pypa/gh-action-pypi-publish@release/v1.10.3 with: user: __token__ password: ${{ secrets.PYPI_API_TOKEN }}