1414 runs-on : ubuntu-latest
1515 steps :
1616 - name : Download image artifact
17- uses : actions/download-artifact@v5
17+ uses : actions/download-artifact@v7
1818 with :
1919 name : ${{ inputs.artifact }}
2020
2323
2424 # Needed for the Docker Compose file.
2525 - name : Checkout code
26- uses : actions/checkout@v5
26+ uses : actions/checkout@v6
2727
2828 # Memory limit tests would fail if this isn't disabled.
2929 - name : Disable swap memory
4343
4444 # Upload it so the coverage from all matrix jobs can be combined later.
4545 - name : Upload coverage data
46- uses : actions/upload-artifact@v4
46+ uses : actions/upload-artifact@v6
4747 with :
4848 name : coverage
4949 path : .coverage
5757
5858 steps :
5959 - name : Checkout code
60- uses : actions/checkout@v5
60+ uses : actions/checkout@v6
6161
6262 - name : Set up Python
6363 uses : actions/setup-python@v6
7070 run : pip install -U -r requirements/coverage.pip
7171
7272 - name : Download coverage data
73- uses : actions/download-artifact@v5
73+ uses : actions/download-artifact@v7
7474 with :
7575 pattern : coverage
7676 merge-multiple : true
9595 needs : test
9696 steps :
9797 - name : Download image artifact
98- uses : actions/download-artifact@v5
98+ uses : actions/download-artifact@v7
9999 with :
100100 name : ${{ inputs.artifact }}
101101
@@ -104,7 +104,7 @@ jobs:
104104
105105 # Needed for the Docker Compose file.
106106 - name : Checkout code
107- uses : actions/checkout@v5
107+ uses : actions/checkout@v6
108108
109109 # Install eval deps the same way as init container from deployment.yaml
110110 # This is to ensure that deployment won't fail at that step
0 commit comments