Skip to content

Commit 2c419dd

Browse files
bump gh action
1 parent 2331d23 commit 2c419dd

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/create_req_files.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
12+
python-version: ["3.9", "3.10", "3.11", "3.12"]
1313
steps:
1414
- uses: actions/checkout@v3
1515
- name: Set up Python
@@ -37,9 +37,10 @@ jobs:
3737
- name: Show created req file
3838
shell: bash
3939
run: cat ${{ env.requirements_file }}
40-
- uses: actions/upload-artifact@v3
40+
- uses: actions/upload-artifact@v4
4141
with:
42-
path: temp_requirement
42+
name: tested_requirement-py${{ matrix.python-version }}
43+
path: ${{ env.requirements_file }}
4344

4445
push-files:
4546
needs: create-req-files
@@ -50,10 +51,10 @@ jobs:
5051
with:
5152
token: ${{ secrets.PAT }}
5253
- name: Download requirement files
53-
uses: actions/download-artifact@v3
54+
uses: actions/download-artifact@v4
5455
with:
55-
name: artifact
56-
path: tested_requirements
56+
pattern: tested_requirement-py*
57+
merge-multiple: true
5758
- name: Commit and push new requirements files
5859
run: |
5960
git config user.name github-actions

0 commit comments

Comments
 (0)