Skip to content

Commit aaaa5ed

Browse files
committed
fix cicd pipeline outdated problem
1 parent f3ba59e commit aaaa5ed

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ jobs:
55
test:
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v3
8+
- uses: actions/checkout@v4
99
- name: Set up Python
1010
id: setup-python
11-
uses: actions/setup-python@v3
11+
uses: actions/setup-python@v4
1212
with:
1313
python-version: '3.11.3'
1414
- name: Install Poetry
@@ -19,7 +19,7 @@ jobs:
1919
installer-parallel: true
2020
- name: Load cached venv
2121
id: cached-poetry-dependencies
22-
uses: actions/cache@v2
22+
uses: actions/cache@v4
2323
with:
2424
path: .venv
2525
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}

0 commit comments

Comments
 (0)