From 064a64074e2bd4d5fa82759835bdf554429f1302 Mon Sep 17 00:00:00 2001 From: "Adam J. Jackson" Date: Wed, 31 Jan 2024 12:21:16 +0000 Subject: [PATCH] Update Github action versions for node 20 --- .github/workflows/build_upload_pypi_wheels.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build_upload_pypi_wheels.yml b/.github/workflows/build_upload_pypi_wheels.yml index 49cc07d1b..1db48998a 100644 --- a/.github/workflows/build_upload_pypi_wheels.yml +++ b/.github/workflows/build_upload_pypi_wheels.yml @@ -36,11 +36,11 @@ jobs: permissions: id-token: write steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 # Ensure tags are fetched for versioning - name: Setup Python ${{ matrix.python-version }} with Conda - uses: conda-incubator/setup-miniconda@v2 + uses: conda-incubator/setup-miniconda@v3 with: python-version: ${{ matrix.python-version }} channels: conda-forge,defaults @@ -82,13 +82,13 @@ jobs: - name: Upload source dist as build artifact if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11' # && github.event_name == 'release' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: python-source-distribution path: dist - name: Upload wheels as build artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: binary-wheels path: wheelhouse/*-${{ matrix.wheelname }}*.whl @@ -104,7 +104,7 @@ jobs: id-token: write steps: - name: Checkout - uses: actions/checkout@3 + uses: actions/checkout@v4 with: fetch-depth: 0 # Ensure tags are fetched for versioning