diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 623647877..3149a58de 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,12 +7,12 @@ jobs: name: lint runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v3 - - uses: actions/setup-python@v4 + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 with: python-version: '3.9' - name: extract pip cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/pip key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }} @@ -31,15 +31,15 @@ jobs: - windows-2022 runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 - - uses: actions/setup-python@v4 + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 with: python-version: '3.9' - name: set pip cache dir shell: bash run: echo "PIP_CACHE_DIR=$(pip cache dir)" >> $GITHUB_ENV - name: extract pip cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ env.PIP_CACHE_DIR }} key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }} @@ -93,8 +93,8 @@ jobs: uses: elastic/elastic-github-actions/elasticsearch@master with: stack-version: 7.12.1 - - uses: actions/checkout@v3 - - uses: actions/setup-python@v4 + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 with: python-version: '3.9' - if: matrix.test == 'other' @@ -102,7 +102,7 @@ jobs: sudo apt-get update sudo apt-get install -y --no-install-recommends ffmpeg - name: extract pip cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ./.tox key: tox-integration-${{ matrix.test }}-${{ hashFiles('setup.py') }} @@ -143,8 +143,8 @@ jobs: - windows-2022 runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 - - uses: actions/setup-python@v4 + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 with: python-version: '3.9' - id: os-name @@ -155,7 +155,7 @@ jobs: shell: bash run: echo "PIP_CACHE_DIR=$(pip cache dir)" >> $GITHUB_ENV - name: extract pip cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ env.PIP_CACHE_DIR }} key: ${{ runner.os }}-pip-${{ hashFiles('setup.py') }}