From f754469facac20e668a799289387d20c074a1a6b Mon Sep 17 00:00:00 2001 From: "Mark A. Tsuchida" Date: Fri, 5 Jul 2024 18:38:37 -0500 Subject: [PATCH] Upgrade gh actions --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 342ad82..2a5e8fa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,7 +54,7 @@ jobs: submodules: "recursive" - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} @@ -91,7 +91,7 @@ jobs: toolset: "14.2" - name: Build wheels - uses: pypa/cibuildwheel@v2.16 + uses: pypa/cibuildwheel@v2.19 env: CIBW_ARCHS_MACOS: "${{ matrix.macos_arch }}" # Python on Linux is usually configured to add debug information, @@ -99,7 +99,7 @@ jobs: # distribute. CIBW_ENVIRONMENT_LINUX: "LDFLAGS=-Wl,--strip-debug" - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: path: ./wheelhouse/*.whl @@ -118,7 +118,7 @@ jobs: check-manifest python -m build --sdist - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: path: dist/*.tar.gz @@ -134,7 +134,7 @@ jobs: contents: write # allows writing releases steps: - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: # unpacks default artifact into dist/ # if `name: artifact` is omitted, the action will create extra parent dir @@ -144,7 +144,7 @@ jobs: - name: Publish to PyPI uses: pypa/gh-action-pypi-publish@release/v1 - - uses: softprops/action-gh-release@v1 + - uses: softprops/action-gh-release@v2 with: generate_release_notes: true files: "./dist/*"