2222 outputs :
2323 new_version : ${{ steps.bump_version.outputs.new_version }}
2424 steps :
25- - uses : actions/checkout@v4
25+ - uses : actions/checkout@v6
2626 with :
2727 token : ${{ secrets.GITHUB_TOKEN }}
2828 ref : ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
@@ -111,7 +111,7 @@ jobs:
111111 git push origin "v${{ steps.bump_version.outputs.new_version }}"
112112
113113 - name : Upload staging metadata
114- uses : actions/upload-artifact@v4
114+ uses : actions/upload-artifact@v7
115115 with :
116116 name : cli-staging-metadata
117117 path : cli/release-staging/
@@ -131,7 +131,7 @@ jobs:
131131 needs : [prepare-and-commit-staging, build-staging-binaries]
132132 runs-on : ubuntu-latest
133133 steps :
134- - uses : actions/checkout@v4
134+ - uses : actions/checkout@v6
135135 with :
136136 ref : ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
137137
@@ -165,12 +165,12 @@ jobs:
165165 fi
166166
167167 - name : Download all binary artifacts
168- uses : actions/download-artifact@v4
168+ uses : actions/download-artifact@v8
169169 with :
170170 path : binaries/
171171
172172 - name : Download staging metadata
173- uses : actions/download-artifact@v4
173+ uses : actions/download-artifact@v8
174174 with :
175175 name : cli-staging-metadata
176176 path : cli/release-staging/
@@ -211,18 +211,18 @@ jobs:
211211 contents : read
212212 id-token : write
213213 steps :
214- - uses : actions/checkout@v4
214+ - uses : actions/checkout@v6
215215 with :
216216 ref : ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
217217
218218 - name : Download CLI staging package
219- uses : actions/download-artifact@v4
219+ uses : actions/download-artifact@v8
220220 with :
221221 name : cli-staging-metadata
222222 path : cli/release-staging/
223223
224224 - name : Set up Node.js with npm registry
225- uses : actions/setup-node@v4
225+ uses : actions/setup-node@v6
226226 with :
227227 node-version : ' 20'
228228 registry-url : ' https://registry.npmjs.org'
0 commit comments