56
56
# Restore cached Python environment
57
57
- name : Restore Python virtual environment
58
58
id : cache-venv
59
- uses : actions/cache/restore@v4.1.2
59
+ uses : actions/cache/restore@v4.2.0
60
60
with :
61
61
path : venv
62
62
key :
75
75
# Save cached Python environment (explicit because cancel-in-progress: true)
76
76
- name : Save Python virtual environment
77
77
if : steps.cache-venv.outputs.cache-hit != 'true'
78
- uses : actions/cache/save@v4.1.2
78
+ uses : actions/cache/save@v4.2.0
79
79
with :
80
80
path : venv
81
81
key :
@@ -151,7 +151,7 @@ jobs:
151
151
echo "commitstring=$output" >> $GITHUB_OUTPUT
152
152
- name : Restore projects cache
153
153
id : cache-projects
154
- uses : actions/cache/restore@v4.1.2
154
+ uses : actions/cache/restore@v4.2.0
155
155
with :
156
156
path : tests/.pylint_primer_tests/
157
157
key : >-
@@ -164,7 +164,7 @@ jobs:
164
164
python tests/primer/__main__.py prepare --clone
165
165
- name : Save projects cache
166
166
if : steps.cache-projects.outputs.cache-hit != 'true'
167
- uses : actions/cache/save@v4.1.2
167
+ uses : actions/cache/save@v4.2.0
168
168
with :
169
169
path : tests/.pylint_primer_tests/
170
170
key : >-
@@ -197,15 +197,15 @@ jobs:
197
197
then echo "::warning ::$WARNINGS"
198
198
fi
199
199
- name : Upload output of PR
200
- uses : actions/upload-artifact@v4.4.3
200
+ uses : actions/upload-artifact@v4.5.0
201
201
with :
202
202
name :
203
203
primer_output_pr_${{ matrix.python-version }}_batch${{ matrix.batchIdx }}
204
204
path :
205
205
tests/.pylint_primer_tests/output_${{ matrix.python-version }}_pr_batch${{
206
206
matrix.batchIdx }}.txt
207
207
- name : Upload output of 'main'
208
- uses : actions/upload-artifact@v4.4.3
208
+ uses : actions/upload-artifact@v4.5.0
209
209
with :
210
210
name :
211
211
primer_output_main_${{ matrix.python-version }}_batch${{ matrix.batchIdx }}
@@ -218,7 +218,7 @@ jobs:
218
218
- name : Upload PR number
219
219
if :
220
220
startsWith(steps.python.outputs.python-version, '3.9') && matrix.batchIdx == 0
221
- uses : actions/upload-artifact@v4.4.3
221
+ uses : actions/upload-artifact@v4.5.0
222
222
with :
223
223
name : pr_number
224
224
path : pr_number.txt
0 commit comments