@@ -106,7 +106,7 @@ jobs:
106106 run : git config --global http.postBuffer 1048576000 && git config --global core.compression 0
107107
108108 - name : Clone Repository (Latest)
109- uses : actions/checkout@v4.2.2
109+ uses : actions/checkout@v5.0.0
110110 if : github.event.inputs.git-ref == ''
111111 with :
112112 # ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS
@@ -115,7 +115,7 @@ jobs:
115115 fetch-depth : 0
116116 fetch-tags : true
117117 - name : Clone Repository (Custom Ref)
118- uses : actions/checkout@v4.2.2
118+ uses : actions/checkout@v5.0.0
119119 if : github.event.inputs.git-ref != ''
120120 with :
121121 ref : ${{ github.event.inputs.git-ref }}
@@ -193,13 +193,13 @@ jobs:
193193 steps :
194194
195195 - name : Clone Repository (Latest)
196- uses : actions/checkout@v4.2.2
196+ uses : actions/checkout@v5.0.0
197197 if : github.event.inputs.git-ref == ''
198198 with :
199199 ssh-key : ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS
200200 submodules : recursive
201201 - name : Clone Repository (Custom Ref)
202- uses : actions/checkout@v4.2.2
202+ uses : actions/checkout@v5.0.0
203203 if : github.event.inputs.git-ref != ''
204204 with :
205205 ref : ${{ github.event.inputs.git-ref }}
@@ -260,7 +260,7 @@ jobs:
260260 needs : [cmake-main, cmake-other]
261261 steps :
262262 - name : Clone the GitHub actions scripts
263- uses : actions/checkout@v4.2.2
263+ uses : actions/checkout@v5.0.0
264264 with :
265265 repository : equipez/github_actions_scripts
266266 ssh-key : ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS
0 commit comments