Skip to content

Commit

Permalink
chore: Use setup-python action to cache dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jongwooo committed Dec 11, 2022
1 parent bc60537 commit b25e0b3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down

0 comments on commit b25e0b3

Please sign in to comment.