@@ -143,7 +143,7 @@ jobs:
143
143
144
144
- name : Cache Business Central Artifacts
145
145
if : steps.DetermineBuildProject.outputs.BuildIt == 'True' && env.useCompilerFolder == 'True' && inputs.useArtifactCache && env.artifactCacheKey
146
- uses : actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0
146
+ uses : actions/cache@0c907a75c2c80ebcb7f088228285e798b750cf8f # v4.2.1
147
147
with :
148
148
path : .artifactcache
149
149
key : ${{ env.artifactCacheKey }}
@@ -197,7 +197,7 @@ jobs:
197
197
suffix : ${{ inputs.artifactsNameSuffix }}
198
198
199
199
- name : Publish artifacts - apps
200
- uses : actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
200
+ uses : actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
201
201
if : inputs.artifactsRetentionDays >= 0 && (hashFiles(format('{0}/.buildartifacts/Apps/*',inputs.project)) != '')
202
202
with :
203
203
name : ${{ steps.calculateArtifactsNames.outputs.AppsArtifactsName }}
@@ -206,7 +206,7 @@ jobs:
206
206
retention-days : ${{ inputs.artifactsRetentionDays }}
207
207
208
208
- name : Publish artifacts - dependencies
209
- uses : actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
209
+ uses : actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
210
210
if : inputs.artifactsRetentionDays >= 0 && env.generateDependencyArtifact == 'True' && (hashFiles(format('{0}/.buildartifacts/Dependencies/*',inputs.project)) != '')
211
211
with :
212
212
name : ${{ steps.calculateArtifactsNames.outputs.DependenciesArtifactsName }}
@@ -215,7 +215,7 @@ jobs:
215
215
retention-days : ${{ inputs.artifactsRetentionDays }}
216
216
217
217
- name : Publish artifacts - test apps
218
- uses : actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
218
+ uses : actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
219
219
if : inputs.artifactsRetentionDays >= 0 && (hashFiles(format('{0}/.buildartifacts/TestApps/*',inputs.project)) != '')
220
220
with :
221
221
name : ${{ steps.calculateArtifactsNames.outputs.TestAppsArtifactsName }}
@@ -224,47 +224,47 @@ jobs:
224
224
retention-days : ${{ inputs.artifactsRetentionDays }}
225
225
226
226
- name : Publish artifacts - build output
227
- uses : actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
227
+ uses : actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
228
228
if : (success() || failure()) && (hashFiles(format('{0}/BuildOutput.txt',inputs.project)) != '')
229
229
with :
230
230
name : ${{ steps.calculateArtifactsNames.outputs.BuildOutputArtifactsName }}
231
231
path : ' ${{ inputs.project }}/BuildOutput.txt'
232
232
if-no-files-found : ignore
233
233
234
234
- name : Publish artifacts - container event log
235
- uses : actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
235
+ uses : actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
236
236
if : (failure()) && (hashFiles(format('{0}/ContainerEventLog.evtx',inputs.project)) != '')
237
237
with :
238
238
name : ${{ steps.calculateArtifactsNames.outputs.ContainerEventLogArtifactsName }}
239
239
path : ' ${{ inputs.project }}/ContainerEventLog.evtx'
240
240
if-no-files-found : ignore
241
241
242
242
- name : Publish artifacts - test results
243
- uses : actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
243
+ uses : actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
244
244
if : (success() || failure()) && (hashFiles(format('{0}/.buildartifacts/TestResults.xml',inputs.project)) != '')
245
245
with :
246
246
name : ${{ steps.calculateArtifactsNames.outputs.TestResultsArtifactsName }}
247
247
path : ' ${{ inputs.project }}/.buildartifacts/TestResults.xml'
248
248
if-no-files-found : ignore
249
249
250
250
- name : Publish artifacts - bcpt test results
251
- uses : actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
251
+ uses : actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
252
252
if : (success() || failure()) && (hashFiles(format('{0}/.buildartifacts/bcptTestResults.json',inputs.project)) != '')
253
253
with :
254
254
name : ${{ steps.calculateArtifactsNames.outputs.BcptTestResultsArtifactsName }}
255
255
path : ' ${{ inputs.project }}/.buildartifacts/bcptTestResults.json'
256
256
if-no-files-found : ignore
257
257
258
258
- name : Publish artifacts - page scripting test results
259
- uses : actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
259
+ uses : actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
260
260
if : (success() || failure()) && (hashFiles(format('{0}/.buildartifacts/PageScriptingTestResults.xml',inputs.project)) != '')
261
261
with :
262
262
name : ${{ steps.calculateArtifactsNames.outputs.PageScriptingTestResultsArtifactsName }}
263
263
path : ' ${{ inputs.project }}/.buildartifacts/PageScriptingTestResults.xml'
264
264
if-no-files-found : ignore
265
265
266
266
- name : Publish artifacts - page scripting test result details
267
- uses : actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
267
+ uses : actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
268
268
if : (success() || failure()) && (hashFiles(format('{0}/.buildartifacts/PageScriptingTestResultDetails/*',inputs.project)) != '')
269
269
with :
270
270
name : ${{ steps.calculateArtifactsNames.outputs.PageScriptingTestResultDetailsArtifactsName }}
0 commit comments