diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index 0413a25..6056f7d 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -11,12 +11,12 @@ jobs: os: [ubuntu-latest, windows-2022] python-version: ["3.8", "3.10", "3.11"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - if: matrix.os == 'ubuntu-latest' name: install audio library libsndfile run: sudo apt-get -y update && sudo apt-get install -y libsndfile1 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} - name: Install requirements @@ -33,11 +33,11 @@ jobs: needs: multitest runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: install audio library libsndfile run: sudo apt-get -y update && sudo apt-get install -y libsndfile1 - name: Setup Python 3.9 - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: 3.9 - name: Generate coverage report @@ -54,11 +54,11 @@ jobs: needs: multitest runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: install audio library libsndfile run: sudo apt-get -y update && sudo apt-get install -y libsndfile1 - name: Setup Python 3.9 - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: 3.9 - name: Install dependencies @@ -74,13 +74,13 @@ jobs: if: github.event_name == 'push' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: install audio library libsndfile run: sudo apt-get -y update && sudo apt-get install -y libsndfile1 - name: Set up Python 3.9 - uses: actions/setup-python@v3 + uses: actions/setup-python@v4 with: python-version: 3.9 - name: Install wheel