6363 outputs :
6464 release-version : ${{ steps.update-repo.outputs.release-version }}
6565 steps :
66- - uses : actions/checkout@v3
66+ - uses : actions/checkout@v4
6767 with :
6868 ref : develop
6969 repository : ${{ github.repository }}
@@ -139,12 +139,13 @@ jobs:
139139 repository : ${{ github.repository }}
140140
141141 - name : Upload Release Details
142- uses : actions/upload-artifact@v3
142+ uses : actions/upload-artifact@v4
143143 with :
144144 name : release-details
145145 path : |
146146 .cut_release_version
147147 .cut_release_changes
148+ include-hidden-files : true
148149
149150 merge-develop-into-stable :
150151 name : Merge develop into stable
@@ -158,7 +159,7 @@ jobs:
158159 permissions :
159160 contents : write # To be able to publish the release
160161 steps :
161- - uses : actions/checkout@v3
162+ - uses : actions/checkout@v4
162163 with :
163164 ref : stable
164165 repository : ${{ github.repository }}
@@ -205,7 +206,7 @@ jobs:
205206 git config --global commit.gpgsign true
206207
207208 - name : Download Release Details
208- uses : actions/download-artifact@v3
209+ uses : actions/download-artifact@v4
209210 with :
210211 name : release-details
211212
@@ -254,13 +255,14 @@ jobs:
254255 permissions :
255256 contents : write # To be able to publish the release
256257 steps :
257- - uses : actions/checkout@v3
258+ - uses : actions/checkout@v4
258259 with :
259260 ref : stable
260261 repository : ${{ github.repository }}
261262 ssh-key : ${{ secrets.SALT_BOOTSTRAP_RELEASE_KEY }}
263+
262264 - name : Download Release Details
263- uses : actions/download-artifact@v3
265+ uses : actions/download-artifact@v4
264266 with :
265267 name : release-details
266268
@@ -287,7 +289,7 @@ jobs:
287289 LICENSE
288290
289291 - name : Delete Release Details Artifact
290- uses : geekyeggo/delete-artifact@v2
292+ uses : geekyeggo/delete-artifact@v5
291293 with :
292294 name : release-details
293295 failOnError : false
@@ -303,7 +305,7 @@ jobs:
303305 environment : release
304306
305307 steps :
306- - uses : actions/checkout@v3
308+ - uses : actions/checkout@v4
307309 with :
308310 ref : stable
309311 repository : ${{ github.repository }}
@@ -367,7 +369,7 @@ jobs:
367369 pull-requests : write # For action peter-evans/create-pull-request
368370
369371 steps :
370- - uses : actions/checkout@v3
372+ - uses : actions/checkout@v4
371373 with :
372374 ref : stable
373375 repository : ${{ github.repository }}
@@ -378,7 +380,7 @@ jobs:
378380 echo "SH=$(sha256sum bootstrap-salt.sh | awk '{ print $1 }')" >> "$GITHUB_ENV"
379381 echo "BS_VERSION=$(sh bootstrap-salt.sh -v | awk '{ print $4 }')" >> "$GITHUB_ENV"
380382
381- - uses : actions/checkout@v3
383+ - uses : actions/checkout@v4
382384 with :
383385 ref : develop
384386 repository : ${{ github.repository }}
0 commit comments