Skip to content

Commit f76d14f

Browse files
Bump dawidd6/action-download-artifact from 2 to 6 in /.github/workflows (#1149)
- Bump dawidd6/action-download-artifact from v2 to v6. - Bump all remaining actions/download-artifact and actions/upload-artifact from v3 to v4. - Undo workarounds from #939. Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: reneSchm <49305466+reneSchm@users.noreply.github.com>
1 parent 4343b92 commit f76d14f

File tree

3 files changed

+4
-18
lines changed

3 files changed

+4
-18
lines changed

.github/actions/build-py/action.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,8 @@ runs:
3030
cp dist/*.whl wheelhouse
3131
fi
3232
cp -r wheelhouse ..
33-
- name: Upload Python Wheels Simulation # See Issue #939
34-
uses: actions/upload-artifact@v3
35-
if: inputs.package == 'simulation'
36-
with:
37-
name: python-wheels-${{ inputs.package }}
38-
path: pycode/wheelhouse
3933
- name: Upload Python Wheels
4034
uses: actions/upload-artifact@v4
41-
if: inputs.package != 'simulation'
4235
with:
4336
name: python-wheels-${{ inputs.package }}
4437
path: pycode/wheelhouse

.github/actions/test-py/action.yml

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,26 +25,19 @@ runs:
2525
sudo apt-get -qq -y install python3-pip gnupg
2626
fi
2727
python -m pip install --upgrade pip
28-
- name: Download Python Wheels Simulation
29-
uses: actions/download-artifact@v3
30-
if: inputs.package == 'simulation' #WORKAROUND! See Issue #939
31-
with:
32-
name: python-wheels-${{ inputs.package }}
33-
path: pycode/wheelhouse
3428
- name: Download Python Wheels
3529
uses: actions/download-artifact@v4
36-
if: inputs.package != 'simulation'
3730
with:
3831
name: python-wheels-${{ inputs.package }}
3932
path: pycode/wheelhouse
40-
- name: Download additional Python Wheels for plot package
33+
- name: Download Python Wheels from epidata for plot package
4134
uses: actions/download-artifact@v4
4235
if: inputs.package == 'plot'
4336
with:
4437
name: python-wheels-epidata
4538
path: pycode/wheelhouse
46-
- name: Download Python Wheels for surrogatemodel
47-
uses: actions/download-artifact@v3 #WORKAROUND! Upgrade to v4 asap. See Issue #939
39+
- name: Download Python Wheels from simulation for surrogatemodel
40+
uses: actions/download-artifact@v4
4841
if: inputs.package == 'surrogatemodel'
4942
with:
5043
name: python-wheels-simulation

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ jobs:
371371
name: test-cpp-coverage-reports
372372
- name: Download pylint report
373373
#if an error occurs here, the pylint report was not built, probably manually trigger epidata-ci
374-
uses: dawidd6/action-download-artifact@v2
374+
uses: dawidd6/action-download-artifact@v6
375375
with:
376376
github_token: ${{secrets.GITHUB_TOKEN}}
377377
workflow: epidata_main.yml

0 commit comments

Comments
 (0)