We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b0e12d commit 1409609Copy full SHA for 1409609
.github/workflows/ci.yml
@@ -25,7 +25,7 @@ jobs:
25
with:
26
python-version: ${{ matrix.python-version }}
27
- name: Cache pip
28
- uses: actions/cache@v2
+ uses: actions/cache@v4
29
30
path: ~/.cache/pip
31
key: ${{ runner.os }}-pip-${{ hashFiles('requirements-dev.txt') }}-${{ matrix.python-version }}
.github/workflows/linter.yml
@@ -8,10 +8,10 @@ jobs:
8
name: Lint
9
steps:
10
- uses: actions/checkout@v4
11
- - name: Set up Python 3.8 environment
12
- uses: actions/setup-python@v3
+ - name: Set up Python 3.13 environment
+ uses: actions/setup-python@v5
13
14
- python-version: 3.13
+ python-version: '3.13'
15
- name: Install dependencies
16
run: |
17
python -m pip install --upgrade pip
0 commit comments