4545 workflowDepth : ${{ steps.DetermineWorkflowDepth.outputs.WorkflowDepth }}
4646 steps :
4747 - name : Dump Workflow Information
48- uses : microsoft/AL-Go/Actions/DumpWorkflowInfo@564c339085ae0ffa74c5bde71c15fea7fe54bbf1
48+ uses : microsoft/AL-Go/Actions/DumpWorkflowInfo@a2a51be438318a7e355fa9044815cf7890ffed1a
4949 with :
5050 shell : powershell
5151
@@ -56,13 +56,13 @@ jobs:
5656
5757 - name : Initialize the workflow
5858 id : init
59- uses : microsoft/AL-Go/Actions/WorkflowInitialize@564c339085ae0ffa74c5bde71c15fea7fe54bbf1
59+ uses : microsoft/AL-Go/Actions/WorkflowInitialize@a2a51be438318a7e355fa9044815cf7890ffed1a
6060 with :
6161 shell : powershell
6262
6363 - name : Read settings
6464 id : ReadSettings
65- uses : microsoft/AL-Go/Actions/ReadSettings@564c339085ae0ffa74c5bde71c15fea7fe54bbf1
65+ uses : microsoft/AL-Go/Actions/ReadSettings@a2a51be438318a7e355fa9044815cf7890ffed1a
6666 with :
6767 shell : powershell
6868 get : type, powerPlatformSolutionFolder
7474
7575 - name : Determine Projects To Build
7676 id : determineProjectsToBuild
77- uses : microsoft/AL-Go/Actions/DetermineProjectsToBuild@564c339085ae0ffa74c5bde71c15fea7fe54bbf1
77+ uses : microsoft/AL-Go/Actions/DetermineProjectsToBuild@a2a51be438318a7e355fa9044815cf7890ffed1a
7878 with :
7979 shell : powershell
8080 maxBuildDepth : ${{ env.workflowDepth }}
@@ -87,23 +87,23 @@ jobs:
8787
8888 - name : Determine Delivery Target Secrets
8989 id : DetermineDeliveryTargetSecrets
90- uses : microsoft/AL-Go/Actions/DetermineDeliveryTargets@564c339085ae0ffa74c5bde71c15fea7fe54bbf1
90+ uses : microsoft/AL-Go/Actions/DetermineDeliveryTargets@a2a51be438318a7e355fa9044815cf7890ffed1a
9191 with :
9292 shell : powershell
9393 projectsJson : ' ${{ steps.determineProjectsToBuild.outputs.ProjectsJson }}'
9494 checkContextSecrets : ' false'
9595
9696 - name : Read secrets
9797 id : ReadSecrets
98- uses : microsoft/AL-Go/Actions/ReadSecrets@564c339085ae0ffa74c5bde71c15fea7fe54bbf1
98+ uses : microsoft/AL-Go/Actions/ReadSecrets@a2a51be438318a7e355fa9044815cf7890ffed1a
9999 with :
100100 shell : powershell
101101 gitHubSecrets : ${{ toJson(secrets) }}
102102 getSecrets : ${{ steps.DetermineDeliveryTargetSecrets.outputs.ContextSecrets }}
103103
104104 - name : Determine Delivery Targets
105105 id : DetermineDeliveryTargets
106- uses : microsoft/AL-Go/Actions/DetermineDeliveryTargets@564c339085ae0ffa74c5bde71c15fea7fe54bbf1
106+ uses : microsoft/AL-Go/Actions/DetermineDeliveryTargets@a2a51be438318a7e355fa9044815cf7890ffed1a
107107 env :
108108 Secrets : ' ${{ steps.ReadSecrets.outputs.Secrets }}'
109109 with :
@@ -113,7 +113,7 @@ jobs:
113113
114114 - name : Determine Deployment Environments
115115 id : DetermineDeploymentEnvironments
116- uses : microsoft/AL-Go/Actions/DetermineDeploymentEnvironments@564c339085ae0ffa74c5bde71c15fea7fe54bbf1
116+ uses : microsoft/AL-Go/Actions/DetermineDeploymentEnvironments@a2a51be438318a7e355fa9044815cf7890ffed1a
117117 env :
118118 GITHUB_TOKEN : ${{ github.token }}
119119 with :
@@ -129,13 +129,13 @@ jobs:
129129 uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
130130
131131 - name : Read settings
132- uses : microsoft/AL-Go/Actions/ReadSettings@564c339085ae0ffa74c5bde71c15fea7fe54bbf1
132+ uses : microsoft/AL-Go/Actions/ReadSettings@a2a51be438318a7e355fa9044815cf7890ffed1a
133133 with :
134134 shell : powershell
135135 get : templateUrl
136136
137137 - name : Check for updates to AL-Go system files
138- uses : microsoft/AL-Go/Actions/CheckForUpdates@564c339085ae0ffa74c5bde71c15fea7fe54bbf1
138+ uses : microsoft/AL-Go/Actions/CheckForUpdates@a2a51be438318a7e355fa9044815cf7890ffed1a
139139 with :
140140 shell : powershell
141141 templateUrl : ${{ env.templateUrl }}
@@ -152,8 +152,8 @@ jobs:
152152 uses : ./.github/workflows/_BuildALGoProject.yaml
153153 secrets : inherit
154154 with :
155- shell : ${{ needs.Initialization.outputs .githubRunnerShell }}
156- runsOn : ${{ needs.Initialization.outputs .githubRunner }}
155+ shell : ${{ matrix .githubRunnerShell }}
156+ runsOn : ${{ matrix .githubRunner }}
157157 project : ${{ matrix.project }}
158158 projectName : ${{ matrix.projectName }}
159159 buildMode : ${{ matrix.buildMode }}
@@ -175,8 +175,8 @@ jobs:
175175 uses : ./.github/workflows/_BuildALGoProject.yaml
176176 secrets : inherit
177177 with :
178- shell : ${{ needs.Initialization.outputs .githubRunnerShell }}
179- runsOn : ${{ needs.Initialization.outputs .githubRunner }}
178+ shell : ${{ matrix .githubRunnerShell }}
179+ runsOn : ${{ matrix .githubRunner }}
180180 project : ${{ matrix.project }}
181181 projectName : ${{ matrix.projectName }}
182182 buildMode : ${{ matrix.buildMode }}
@@ -210,7 +210,7 @@ jobs:
210210 path : ' .artifacts'
211211
212212 - name : Read settings
213- uses : microsoft/AL-Go/Actions/ReadSettings@564c339085ae0ffa74c5bde71c15fea7fe54bbf1
213+ uses : microsoft/AL-Go/Actions/ReadSettings@a2a51be438318a7e355fa9044815cf7890ffed1a
214214 with :
215215 shell : powershell
216216
@@ -219,7 +219,7 @@ jobs:
219219 uses : actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0
220220
221221 - name : Build Reference Documentation
222- uses : microsoft/AL-Go/Actions/BuildReferenceDocumentation@564c339085ae0ffa74c5bde71c15fea7fe54bbf1
222+ uses : microsoft/AL-Go/Actions/BuildReferenceDocumentation@a2a51be438318a7e355fa9044815cf7890ffed1a
223223 with :
224224 shell : powershell
225225 artifacts : ' .artifacts'
@@ -256,7 +256,7 @@ jobs:
256256 path : ' .artifacts'
257257
258258 - name : Read settings
259- uses : microsoft/AL-Go/Actions/ReadSettings@564c339085ae0ffa74c5bde71c15fea7fe54bbf1
259+ uses : microsoft/AL-Go/Actions/ReadSettings@a2a51be438318a7e355fa9044815cf7890ffed1a
260260 with :
261261 shell : ${{ matrix.shell }}
262262 get : type,powerPlatformSolutionFolder
@@ -270,15 +270,15 @@ jobs:
270270
271271 - name : Read secrets
272272 id : ReadSecrets
273- uses : microsoft/AL-Go/Actions/ReadSecrets@564c339085ae0ffa74c5bde71c15fea7fe54bbf1
273+ uses : microsoft/AL-Go/Actions/ReadSecrets@a2a51be438318a7e355fa9044815cf7890ffed1a
274274 with :
275275 shell : ${{ matrix.shell }}
276276 gitHubSecrets : ${{ toJson(secrets) }}
277277 getSecrets : ' ${{ steps.envName.outputs.envName }}-AuthContext,${{ steps.envName.outputs.envName }}_AuthContext,AuthContext'
278278
279279 - name : Deploy to Business Central
280280 id : Deploy
281- uses : microsoft/AL-Go/Actions/Deploy@564c339085ae0ffa74c5bde71c15fea7fe54bbf1
281+ uses : microsoft/AL-Go/Actions/Deploy@a2a51be438318a7e355fa9044815cf7890ffed1a
282282 env :
283283 Secrets : ' ${{ steps.ReadSecrets.outputs.Secrets }}'
284284 with :
@@ -290,7 +290,7 @@ jobs:
290290
291291 - name : Deploy to Power Platform
292292 if : env.type == 'PTE' && env.powerPlatformSolutionFolder != ''
293- uses : microsoft/AL-Go/Actions/DeployPowerPlatform@564c339085ae0ffa74c5bde71c15fea7fe54bbf1
293+ uses : microsoft/AL-Go/Actions/DeployPowerPlatform@a2a51be438318a7e355fa9044815cf7890ffed1a
294294 env :
295295 Secrets : ' ${{ steps.ReadSecrets.outputs.Secrets }}'
296296 with :
@@ -318,20 +318,20 @@ jobs:
318318 path : ' .artifacts'
319319
320320 - name : Read settings
321- uses : microsoft/AL-Go/Actions/ReadSettings@564c339085ae0ffa74c5bde71c15fea7fe54bbf1
321+ uses : microsoft/AL-Go/Actions/ReadSettings@a2a51be438318a7e355fa9044815cf7890ffed1a
322322 with :
323323 shell : powershell
324324
325325 - name : Read secrets
326326 id : ReadSecrets
327- uses : microsoft/AL-Go/Actions/ReadSecrets@564c339085ae0ffa74c5bde71c15fea7fe54bbf1
327+ uses : microsoft/AL-Go/Actions/ReadSecrets@a2a51be438318a7e355fa9044815cf7890ffed1a
328328 with :
329329 shell : powershell
330330 gitHubSecrets : ${{ toJson(secrets) }}
331331 getSecrets : ' ${{ matrix.deliveryTarget }}Context'
332332
333333 - name : Deliver
334- uses : microsoft/AL-Go/Actions/Deliver@564c339085ae0ffa74c5bde71c15fea7fe54bbf1
334+ uses : microsoft/AL-Go/Actions/Deliver@a2a51be438318a7e355fa9044815cf7890ffed1a
335335 env :
336336 Secrets : ' ${{ steps.ReadSecrets.outputs.Secrets }}'
337337 with :
@@ -351,7 +351,7 @@ jobs:
351351
352352 - name : Finalize the workflow
353353 id : PostProcess
354- uses : microsoft/AL-Go/Actions/WorkflowPostProcess@564c339085ae0ffa74c5bde71c15fea7fe54bbf1
354+ uses : microsoft/AL-Go/Actions/WorkflowPostProcess@a2a51be438318a7e355fa9044815cf7890ffed1a
355355 env :
356356 GITHUB_TOKEN : ${{ github.token }}
357357 with :
0 commit comments