We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd4a21d commit 1e72c36Copy full SHA for 1e72c36
.github/workflows/python-test.yml
@@ -14,10 +14,10 @@ jobs:
14
python-version: ["3.12"] # Test on a few Python versions
15
16
steps:
17
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
18
19
- name: Set up Python ${{ matrix.python-version }}
20
- uses: actions/setup-python@v3
+ uses: actions/setup-python@v5
21
with:
22
python-version: ${{ matrix.python-version }}
23
@@ -33,7 +33,7 @@ jobs:
33
34
- name: Upload test outputs
35
if: always() # Always run this step to upload artifacts, even if tests fail, to help debugging
36
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
37
38
name: test-outputs-python-${{ matrix.python-version }}
39
path: test_output/
0 commit comments