Skip to content

Commit

Permalink
Update build.yaml workflow to use latest versions of actions/checkout…
Browse files Browse the repository at this point in the history
… and actions/setup-python
  • Loading branch information
royshil committed Oct 18, 2024
1 parent 426d0df commit 689c970
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: '3.9'

Expand All @@ -63,7 +63,7 @@ jobs:
python -c "import simpler_whisper; print(simpler_whisper.__file__)"
- name: Upload wheel
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: wheel-${{ matrix.os }}-${{ matrix.platform }}-${{ matrix.acceleration }}
path: dist/*.whl

0 comments on commit 689c970

Please sign in to comment.