Update GitHub Actions to latest major versions #984
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Automated PR to update action versions:
pwd
:/project -w /project quay.io/pypa/manylinux2014_x86_64 bash .github/workflows/docker/buildwheel.sh\n \n - name: Upload Wheels\n\x1b[31m- uses: actions/upload-artifact@v3\x1b[0m\n\x1b[32m+ uses: actions/upload-artifact@v4\x1b[0m\n with:\n name: linux-wheels\n path: dist/wheelhouse\n@@ -115,11 +115,11 @@\n python: [3.9, "3.10", 3.11, 3.12]\n steps:\n - name: Download wheels\n\x1b[31m- uses: actions/download-artifact@v3\x1b[0m\n\x1b[32m+ uses: actions/download-artifact@v4\x1b[0m\n with:\n name: osx-wheel-${{ matrix.python }}\n - name: Set up Python ${{ matrix.python }}\n\x1b[31m- uses: actions/setup-python@v4\x1b[0m\n\x1b[32m+ uses: actions/setup-python@v5\x1b[0m\n with:\n python-version: ${{ matrix.python }}\n - name: Install wheel and test\n@@ -139,11 +139,11 @@\n wordsize: [64]\n steps:\n - name: Download wheels\n\x1b[31m- uses: actions/download-artifact@v3\x1b[0m\n\x1b[32m+ uses: actions/download-artifact@v4\x1b[0m\n with:\n name: win-wheel-${{ matrix.python }}-${{ matrix.wordsize }}\n - name: Set up Python ${{ matrix.python }}\n\x1b[31m- uses: actions/setup-python@v4\x1b[0m\n\x1b[32m+ uses: actions/setup-python@v5\x1b[0m\n with:\n python-version: ${{ matrix.python }}\n - name: Install wheel and test\n@@ -164,11 +164,11 @@\n python: [3.9, "3.10", 3.11, 3.12]\n steps:\n - name: Download wheels\n\x1b[31m- uses: actions/download-artifact@v3\x1b[0m\n\x1b[32m+ uses: actions/download-artifact@v4\x1b[0m\n with:\n name: linux-wheels\n - name: Set up Python\n\x1b[31m- uses: actions/setup-python@v4\x1b[0m\n\x1b[32m+ uses: actions/setup-python@v5\x1b[0m\n with:\n python-version: ${{ matrix.python }}\n - name: Install wheel and test\n@@ -188,16 +188,16 @@\n id-token: write\n steps:\n - name: Download all\n\x1b[31m- uses: actions/download-artifact@v3\x1b[0m\n\x1b[32m+ uses: actions/download-artifact@v4\x1b[0m\n - name: Move to dist\n run: |\n mkdir dist\n cp /.{whl,gz} dist/.\n - name: Publish distribution to Test PyPI\n if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')\n\x1b[31m- uses: pypa/gh-action-pypi-publish@release/v1\x1b[0m\n\x1b[32m+ uses: pypa/gh-action-pypi-publish@v1\x1b[0m\n with:\n repository_url: https://test.pypi.org/legacy/\n - name: Publish distribution to PRODUCTION PyPI\n if: github.event_name == 'release'\n\x1b[31m- uses: pypa/gh-action-pypi-publish@release/v1\x1b[0m\n\x1b[32m+ uses: pypa/gh-action-pypi-publish@v1\x1b[0m')