There was an error while loading. Please reload this page.
1 parent bb1dbd5 commit 9627d0cCopy full SHA for 9627d0c
1 file changed
.github/workflows/tests.yaml
@@ -18,11 +18,11 @@ jobs:
18
linting:
19
runs-on: ubuntu-latest
20
steps:
21
- - uses: actions/checkout@main
+ - uses: actions/checkout@v4
22
23
- name: Set up python
24
id: setup-python
25
- uses: actions/setup-python@v4
+ uses: actions/setup-python@v6
26
with:
27
python-version: "3.13"
28
@@ -32,7 +32,7 @@ jobs:
32
# Caches the venv at the end of the job and reloads for quicker pre-commit.
33
# Uses pyproject.toml and pre-commit-config file to create hash.
34
- name: Cache venv
35
- uses: actions/cache@v3
+ uses: actions/cache@v5
36
id: cache
37
38
path: |
@@ -53,7 +53,7 @@ jobs:
53
tests:
54
55
56
57
58
- name: Build API image
59
run: |
0 commit comments