Skip to content

Commit

Permalink
ci: bump actions
Browse files Browse the repository at this point in the history
  • Loading branch information
tekumara committed Mar 10, 2024
1 parent 0bddb04 commit e233f35
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,15 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.11
- uses: actions/checkout@v4
- name: Set up Python
id: setup-python
uses: actions/setup-python@v2
with:
python-version: "3.11"
uses: actions/setup-python@v5
- name: Cache virtualenv
id: cache-venv
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: .venv
key: ${{ runner.os }}-py${{ steps.setup-python.outputs.python-version }}-venv-${{ hashFiles('setup.py') }}
key: ${{ runner.os }}-py${{ steps.setup-python.outputs.python-version }}-venv
- name: make test
run: make test

0 comments on commit e233f35

Please sign in to comment.