We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2331d23 commit 5f329a4Copy full SHA for 5f329a4
.github/workflows/create_req_files.yml
@@ -37,9 +37,10 @@ jobs:
37
- name: Show created req file
38
shell: bash
39
run: cat ${{ env.requirements_file }}
40
- - uses: actions/upload-artifact@v3
+ - uses: actions/upload-artifact@v4
41
with:
42
- path: temp_requirement
+ name: tested_requirement-py${{ matrix.python-version }}
43
+ path: tested_requirements
44
45
push-files:
46
needs: create-req-files
@@ -50,9 +51,9 @@ jobs:
50
51
52
token: ${{ secrets.PAT }}
53
- name: Download requirement files
- uses: actions/download-artifact@v3
54
+ uses: actions/download-artifact@v4
55
- name: artifact
56
+ pattern: tested_requirement-py*
57
path: tested_requirements
58
- name: Commit and push new requirements files
59
run: |
0 commit comments