diff --git a/.github/workflows/update.yaml b/.github/workflows/update.yaml index 05dbc59..670040d 100644 --- a/.github/workflows/update.yaml +++ b/.github/workflows/update.yaml @@ -21,14 +21,14 @@ jobs: fetch-depth: 0 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v3 with: python-version: ${{ matrix.python-version }} + cache: pip - - name: Install dependencies (`aiohttp`) + - name: Install dependencies run: | - python -m pip install --upgrade pip - pip install aiohttp + python -m pip install -r requirements.txt - name: Run script run: |