Skip to content

Commit

Permalink
Update Github action versions for node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
ajjackson committed Jan 31, 2024
1 parent 804c566 commit 064a640
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build_upload_pypi_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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

Expand Down

0 comments on commit 064a640

Please sign in to comment.