Skip to content

Commit 3f72f5c

Browse files
business-central-bot[bot]business-central-bot
andauthored
[releases/26.5@588401b] Update AL-Go System Files from microsoft/AL-Go-PTE@preview - 8c87de5 / Related to AB#539394 (#4687)
## v7.3 ### Configurable merge method for pull request auto-merge A new setting `pullRequestMergeMethod` has been added to the `commitOptions` structure, allowing you to configure which merge method to use when `pullRequestAutoMerge` is enabled. Valid values are "merge" or "squash". The default value is "squash" to maintain backward compatibility. Example ```json { "commitOptions": { "pullRequestAutoMerge": true, "pullRequestMergeMethod": "merge" } } ``` ### AL-Go Telemetry AL-Go now offers a dataexplorer dashboard to get started with AL-Go telemetry. Additionally, we've updated the documentation to include a couple of kusto queries if you would rather build your own reports. ### Support for AL-Go settings as GitHub environment variable: ALGoEnvSettings AL-Go settings can now be defined in GitHub environment variables. To use this feature, create a new variable under your GitHub environment called `ALGoEnvironmentSettings`. Please note that this variable should not include your environment name. Settings loaded this way, will only be available during the Deploy step of the CI/CD or Publish to Environment actions, but not the Build step, making it most suitable for the [DeployTo setting](https://aka.ms/algosettings#deployto). Settings defined in this variable will take priority over any setting defined in AL-Go repo, org or settings files. The contents of the variable should be a JSON block, similar to any other settings file or variable. When defining the `DeployTo\<EnvName>` setting in this variable, it should still include the environment name. Eg: ``` { DeployToProduction { "Branches": [ "*" ], "includeTestAppsInSandboxEnvironment": false, "excludeAppIds": [ 1234 ] } } ``` Please note, that due to certain security limitations, the properties `runs-on`, `shell` and `ContinousDeployment` of the `DeployTo` setting will <ins>**NOT**</ins> be respected if defined in a GitHub environment variable. To use these properties, please keep them defined elsewhere, such as your AL-Go settings file or Org/Repo settings variables. ### Issues - Issue 1770 Wrong type of _projects_ setting in settings schema - Issue 1787 Publish to Environment from PR fails in private repos - Issue 1722 Check if apps are already installed on a higher version before deploying - Issue 1774 Increment Version Number with +0.1 can increment some version numbers twice - Issue 1837 Deployment from PR builds fail if PR branch name includes forward slashes (e.g., `feature/branch-name`). - Issue 1852 Page Scripting Tests are not added to build summary - Issue 1829 Added custom jobs cannot be removed - Idea 1856 Include workflow name as input for action ReadSetting ### Additional debug logging functionality We have improved how logging is handled in AL-Go, and now make better use of GitHub built-in extended debug logging functionality. Extended debug logging can be enabled when re-running actions by clicking the 'Enable debug logging' checkbox in the pop-up window. This can be done both for jobs that failed and jobs that succeeded, but did not produce the correct result. ### Add custom jobs to AL-Go workflows It is now possible to add custom jobs to AL-Go workflows. The Custom Job needs to be named `CustomJob<something>` and should be placed after all other jobs in the .yaml file. The order of which jobs are executed is determined by the Needs statements. Your custom job will be executed after all jobs specified in the Needs clause in your job and if you need the job to be executed before other jobs, you should add the job name in the Needs clause of that job. See [https://aka.ms/algosettings#customjobs](https://aka.ms/algosettings#customjobs) for details. Note that custom jobs might break by future changes to AL-Go for GitHub workflows. If you have customizations to AL-Go for GitHub workflows, you should always doublecheck the pull request generated by Update AL-Go System Files. ### Support for Custom AL-Go template repositories Create an AL-Go for GitHub repository based on [https://aka.ms/algopte](https://aka.ms/algopte) or [https://aka.ms/algoappsource](https://aka.ms/algoappsource), add custom workflows, custom jobs and/or settings to this repository and then use that repository as the template repository for other repositories. Using custom template repositories allows you to create and use highly customized template repositories and control the uptake of this in all repositories. See [https://aka.ms/algosettings#customtemplate](https://aka.ms/algosettings#customtemplate) for details. > [!NOTE] > Customized repositories might break by future changes to AL-Go for GitHub. If you are customizing AL-Go for GitHub, you should always double-check the pull request when updating AL-Go system files in your custom template repositories. Related to [AB#539394](https://dynamicssmb2.visualstudio.com/1fcb79e7-ab07-432a-a3c6-6cf5a88ba4a5/_workitems/edit/539394) Co-authored-by: business-central-bot <business-central-bot@users.noreply.github.com>
1 parent 588401b commit 3f72f5c

32 files changed

+159
-160
lines changed

.github/AL-Go-Settings.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/82c1b5411ec5f36699702c03723175b06ee7ee6e/Actions/settings.schema.json",
2+
"$schema": "https://raw.githubusercontent.com/microsoft/AL-Go-Actions/v7.3/.Modules/settings.schema.json",
33
"type": "PTE",
44
"templateUrl": "https://github.com/microsoft/AL-Go-PTE@preview",
55
"bcContainerHelperVersion": "preview",
@@ -94,7 +94,7 @@
9494
]
9595
},
9696
"UpdateALGoSystemFilesEnvironment": "Official-Build",
97-
"templateSha": "15ac64df1045353551a0b1c3ad766f2ca7c90939",
97+
"templateSha": "8c87de5e54b08d3952968841481c23cadbf2fe30",
9898
"commitOptions": {
9999
"messageSuffix": "Related to AB#539394",
100100
"pullRequestAutoMerge": true,

.github/RELEASENOTES.copy.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
## preview
2-
3-
Note that when using the preview version of AL-Go for GitHub, we recommend you Update your AL-Go system files, as soon as possible when informed that an update is available.
1+
## v7.3
42

53
### Configurable merge method for pull request auto-merge
64

@@ -52,6 +50,7 @@ Please note, that due to certain security limitations, the properties `runs-on`,
5250
- Issue 1837 Deployment from PR builds fail if PR branch name includes forward slashes (e.g., `feature/branch-name`).
5351
- Issue 1852 Page Scripting Tests are not added to build summary
5452
- Issue 1829 Added custom jobs cannot be removed
53+
- Idea 1856 Include workflow name as input for action ReadSetting
5554

5655
### Additional debug logging functionality
5756

.github/Test Next Major.settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/82c1b5411ec5f36699702c03723175b06ee7ee6e/Actions/settings.schema.json",
2+
"$schema": "https://raw.githubusercontent.com/microsoft/AL-Go-Actions/v7.3/settings.schema.json",
33
"artifact": "////nextmajor",
44
"cacheImageName": "",
55
"versioningStrategy": 15

.github/Test Next Minor.settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/82c1b5411ec5f36699702c03723175b06ee7ee6e/Actions/settings.schema.json",
2+
"$schema": "https://raw.githubusercontent.com/microsoft/AL-Go-Actions/v7.3/settings.schema.json",
33
"artifact": "////nextminor",
44
"cacheImageName": "",
55
"versioningStrategy": 15

.github/workflows/CICD.yaml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
powerPlatformSolutionFolder: ${{ steps.DeterminePowerPlatformSolutionFolder.outputs.powerPlatformSolutionFolder }}
4949
steps:
5050
- name: Dump Workflow Information
51-
uses: microsoft/AL-Go/Actions/DumpWorkflowInfo@82c1b5411ec5f36699702c03723175b06ee7ee6e
51+
uses: microsoft/AL-Go-Actions/DumpWorkflowInfo@v7.3
5252
with:
5353
shell: powershell
5454

@@ -59,21 +59,21 @@ jobs:
5959

6060
- name: Initialize the workflow
6161
id: init
62-
uses: microsoft/AL-Go/Actions/WorkflowInitialize@82c1b5411ec5f36699702c03723175b06ee7ee6e
62+
uses: microsoft/AL-Go-Actions/WorkflowInitialize@v7.3
6363
with:
6464
shell: powershell
6565

6666
- name: Read settings
6767
id: ReadSettings
68-
uses: microsoft/AL-Go/Actions/ReadSettings@82c1b5411ec5f36699702c03723175b06ee7ee6e
68+
uses: microsoft/AL-Go-Actions/ReadSettings@v7.3
6969
with:
7070
shell: powershell
7171
get: type,powerPlatformSolutionFolder,useGitSubmodules
7272

7373
- name: Read submodules token
7474
id: ReadSubmodulesToken
7575
if: env.useGitSubmodules != 'false' && env.useGitSubmodules != ''
76-
uses: microsoft/AL-Go/Actions/ReadSecrets@82c1b5411ec5f36699702c03723175b06ee7ee6e
76+
uses: microsoft/AL-Go-Actions/ReadSecrets@v7.3
7777
with:
7878
shell: powershell
7979
gitHubSecrets: ${{ toJson(secrets) }}
@@ -94,7 +94,7 @@ jobs:
9494
9595
- name: Determine Projects To Build
9696
id: determineProjectsToBuild
97-
uses: microsoft/AL-Go/Actions/DetermineProjectsToBuild@82c1b5411ec5f36699702c03723175b06ee7ee6e
97+
uses: microsoft/AL-Go-Actions/DetermineProjectsToBuild@v7.3
9898
with:
9999
shell: powershell
100100
maxBuildDepth: ${{ env.workflowDepth }}
@@ -107,23 +107,23 @@ jobs:
107107
108108
- name: Determine Delivery Target Secrets
109109
id: DetermineDeliveryTargetSecrets
110-
uses: microsoft/AL-Go/Actions/DetermineDeliveryTargets@82c1b5411ec5f36699702c03723175b06ee7ee6e
110+
uses: microsoft/AL-Go-Actions/DetermineDeliveryTargets@v7.3
111111
with:
112112
shell: powershell
113113
projectsJson: '${{ steps.determineProjectsToBuild.outputs.ProjectsJson }}'
114114
checkContextSecrets: 'false'
115115

116116
- name: Read secrets
117117
id: ReadSecrets
118-
uses: microsoft/AL-Go/Actions/ReadSecrets@82c1b5411ec5f36699702c03723175b06ee7ee6e
118+
uses: microsoft/AL-Go-Actions/ReadSecrets@v7.3
119119
with:
120120
shell: powershell
121121
gitHubSecrets: ${{ toJson(secrets) }}
122122
getSecrets: ${{ steps.DetermineDeliveryTargetSecrets.outputs.ContextSecrets }}
123123

124124
- name: Determine Delivery Targets
125125
id: DetermineDeliveryTargets
126-
uses: microsoft/AL-Go/Actions/DetermineDeliveryTargets@82c1b5411ec5f36699702c03723175b06ee7ee6e
126+
uses: microsoft/AL-Go-Actions/DetermineDeliveryTargets@v7.3
127127
env:
128128
Secrets: '${{ steps.ReadSecrets.outputs.Secrets }}'
129129
with:
@@ -133,7 +133,7 @@ jobs:
133133

134134
- name: Determine Deployment Environments
135135
id: DetermineDeploymentEnvironments
136-
uses: microsoft/AL-Go/Actions/DetermineDeploymentEnvironments@82c1b5411ec5f36699702c03723175b06ee7ee6e
136+
uses: microsoft/AL-Go-Actions/DetermineDeploymentEnvironments@v7.3
137137
env:
138138
GITHUB_TOKEN: ${{ github.token }}
139139
with:
@@ -149,21 +149,21 @@ jobs:
149149
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
150150

151151
- name: Read settings
152-
uses: microsoft/AL-Go/Actions/ReadSettings@82c1b5411ec5f36699702c03723175b06ee7ee6e
152+
uses: microsoft/AL-Go-Actions/ReadSettings@v7.3
153153
with:
154154
shell: powershell
155155
get: templateUrl
156156

157157
- name: Read secrets
158158
id: ReadSecrets
159-
uses: microsoft/AL-Go/Actions/ReadSecrets@82c1b5411ec5f36699702c03723175b06ee7ee6e
159+
uses: microsoft/AL-Go-Actions/ReadSecrets@v7.3
160160
with:
161161
shell: powershell
162162
gitHubSecrets: ${{ toJson(secrets) }}
163163
getSecrets: 'ghTokenWorkflow'
164164

165165
- name: Check for updates to AL-Go system files
166-
uses: microsoft/AL-Go/Actions/CheckForUpdates@82c1b5411ec5f36699702c03723175b06ee7ee6e
166+
uses: microsoft/AL-Go-Actions/CheckForUpdates@v7.3
167167
env:
168168
GITHUB_TOKEN: ${{ github.token }}
169169
with:
@@ -245,7 +245,7 @@ jobs:
245245
path: '.artifacts'
246246

247247
- name: Read settings
248-
uses: microsoft/AL-Go/Actions/ReadSettings@82c1b5411ec5f36699702c03723175b06ee7ee6e
248+
uses: microsoft/AL-Go-Actions/ReadSettings@v7.3
249249
with:
250250
shell: powershell
251251

@@ -254,7 +254,7 @@ jobs:
254254
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0
255255

256256
- name: Build Reference Documentation
257-
uses: microsoft/AL-Go/Actions/BuildReferenceDocumentation@82c1b5411ec5f36699702c03723175b06ee7ee6e
257+
uses: microsoft/AL-Go-Actions/BuildReferenceDocumentation@v7.3
258258
with:
259259
shell: powershell
260260
artifacts: '.artifacts'
@@ -294,7 +294,7 @@ jobs:
294294
path: '.artifacts'
295295

296296
- name: Read settings
297-
uses: microsoft/AL-Go/Actions/ReadSettings@82c1b5411ec5f36699702c03723175b06ee7ee6e
297+
uses: microsoft/AL-Go-Actions/ReadSettings@v7.3
298298
with:
299299
shell: ${{ matrix.shell }}
300300
get: type,powerPlatformSolutionFolder
@@ -308,15 +308,15 @@ jobs:
308308
309309
- name: Read secrets
310310
id: ReadSecrets
311-
uses: microsoft/AL-Go/Actions/ReadSecrets@82c1b5411ec5f36699702c03723175b06ee7ee6e
311+
uses: microsoft/AL-Go-Actions/ReadSecrets@v7.3
312312
with:
313313
shell: ${{ matrix.shell }}
314314
gitHubSecrets: ${{ toJson(secrets) }}
315315
getSecrets: '${{ steps.envName.outputs.envName }}-AuthContext,${{ steps.envName.outputs.envName }}_AuthContext,AuthContext'
316316

317317
- name: Deploy to Business Central
318318
id: Deploy
319-
uses: microsoft/AL-Go/Actions/Deploy@82c1b5411ec5f36699702c03723175b06ee7ee6e
319+
uses: microsoft/AL-Go-Actions/Deploy@v7.3
320320
env:
321321
Secrets: '${{ steps.ReadSecrets.outputs.Secrets }}'
322322
with:
@@ -328,7 +328,7 @@ jobs:
328328

329329
- name: Deploy to Power Platform
330330
if: env.type == 'PTE' && env.powerPlatformSolutionFolder != ''
331-
uses: microsoft/AL-Go/Actions/DeployPowerPlatform@82c1b5411ec5f36699702c03723175b06ee7ee6e
331+
uses: microsoft/AL-Go-Actions/DeployPowerPlatform@v7.3
332332
env:
333333
Secrets: '${{ steps.ReadSecrets.outputs.Secrets }}'
334334
with:
@@ -356,20 +356,20 @@ jobs:
356356
path: '.artifacts'
357357

358358
- name: Read settings
359-
uses: microsoft/AL-Go/Actions/ReadSettings@82c1b5411ec5f36699702c03723175b06ee7ee6e
359+
uses: microsoft/AL-Go-Actions/ReadSettings@v7.3
360360
with:
361361
shell: powershell
362362

363363
- name: Read secrets
364364
id: ReadSecrets
365-
uses: microsoft/AL-Go/Actions/ReadSecrets@82c1b5411ec5f36699702c03723175b06ee7ee6e
365+
uses: microsoft/AL-Go-Actions/ReadSecrets@v7.3
366366
with:
367367
shell: powershell
368368
gitHubSecrets: ${{ toJson(secrets) }}
369369
getSecrets: '${{ matrix.deliveryTarget }}Context'
370370

371371
- name: Deliver
372-
uses: microsoft/AL-Go/Actions/Deliver@82c1b5411ec5f36699702c03723175b06ee7ee6e
372+
uses: microsoft/AL-Go-Actions/Deliver@v7.3
373373
env:
374374
Secrets: '${{ steps.ReadSecrets.outputs.Secrets }}'
375375
with:
@@ -389,7 +389,7 @@ jobs:
389389

390390
- name: Finalize the workflow
391391
id: PostProcess
392-
uses: microsoft/AL-Go/Actions/WorkflowPostProcess@82c1b5411ec5f36699702c03723175b06ee7ee6e
392+
uses: microsoft/AL-Go-Actions/WorkflowPostProcess@v7.3
393393
env:
394394
GITHUB_TOKEN: ${{ github.token }}
395395
with:

.github/workflows/DeployReferenceDocumentation.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,18 @@ jobs:
3030

3131
- name: Initialize the workflow
3232
id: init
33-
uses: microsoft/AL-Go/Actions/WorkflowInitialize@82c1b5411ec5f36699702c03723175b06ee7ee6e
33+
uses: microsoft/AL-Go-Actions/WorkflowInitialize@v7.3
3434
with:
3535
shell: powershell
3636

3737
- name: Read settings
38-
uses: microsoft/AL-Go/Actions/ReadSettings@82c1b5411ec5f36699702c03723175b06ee7ee6e
38+
uses: microsoft/AL-Go-Actions/ReadSettings@v7.3
3939
with:
4040
shell: powershell
4141

4242
- name: Determine Deployment Environments
4343
id: DetermineDeploymentEnvironments
44-
uses: microsoft/AL-Go/Actions/DetermineDeploymentEnvironments@82c1b5411ec5f36699702c03723175b06ee7ee6e
44+
uses: microsoft/AL-Go-Actions/DetermineDeploymentEnvironments@v7.3
4545
env:
4646
GITHUB_TOKEN: ${{ github.token }}
4747
with:
@@ -54,7 +54,7 @@ jobs:
5454
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0
5555

5656
- name: Build Reference Documentation
57-
uses: microsoft/AL-Go/Actions/BuildReferenceDocumentation@82c1b5411ec5f36699702c03723175b06ee7ee6e
57+
uses: microsoft/AL-Go-Actions/BuildReferenceDocumentation@v7.3
5858
with:
5959
shell: powershell
6060
artifacts: 'latest'
@@ -71,7 +71,7 @@ jobs:
7171

7272
- name: Finalize the workflow
7373
if: always()
74-
uses: microsoft/AL-Go/Actions/WorkflowPostProcess@82c1b5411ec5f36699702c03723175b06ee7ee6e
74+
uses: microsoft/AL-Go-Actions/WorkflowPostProcess@v7.3
7575
env:
7676
GITHUB_TOKEN: ${{ github.token }}
7777
with:

.github/workflows/IncrementVersionNumber.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
pull-requests: write
4949
steps:
5050
- name: Dump Workflow Information
51-
uses: microsoft/AL-Go/Actions/DumpWorkflowInfo@82c1b5411ec5f36699702c03723175b06ee7ee6e
51+
uses: microsoft/AL-Go-Actions/DumpWorkflowInfo@v7.3
5252
with:
5353
shell: powershell
5454

@@ -57,32 +57,32 @@ jobs:
5757

5858
- name: Initialize the workflow
5959
id: init
60-
uses: microsoft/AL-Go/Actions/WorkflowInitialize@82c1b5411ec5f36699702c03723175b06ee7ee6e
60+
uses: microsoft/AL-Go-Actions/WorkflowInitialize@v7.3
6161
with:
6262
shell: powershell
6363

6464
- name: Read settings
65-
uses: microsoft/AL-Go/Actions/ReadSettings@82c1b5411ec5f36699702c03723175b06ee7ee6e
65+
uses: microsoft/AL-Go-Actions/ReadSettings@v7.3
6666
with:
6767
shell: powershell
6868

6969
- name: Validate Workflow Input
7070
if: ${{ github.event_name == 'workflow_dispatch' }}
71-
uses: microsoft/AL-Go/Actions/ValidateWorkflowInput@82c1b5411ec5f36699702c03723175b06ee7ee6e
71+
uses: microsoft/AL-Go-Actions/ValidateWorkflowInput@v7.3
7272
with:
7373
shell: powershell
7474

7575
- name: Read secrets
7676
id: ReadSecrets
77-
uses: microsoft/AL-Go/Actions/ReadSecrets@82c1b5411ec5f36699702c03723175b06ee7ee6e
77+
uses: microsoft/AL-Go-Actions/ReadSecrets@v7.3
7878
with:
7979
shell: powershell
8080
gitHubSecrets: ${{ toJson(secrets) }}
8181
getSecrets: 'TokenForPush'
8282
useGhTokenWorkflowForPush: '${{ github.event.inputs.useGhTokenWorkflow }}'
8383

8484
- name: Increment Version Number
85-
uses: microsoft/AL-Go/Actions/IncrementVersionNumber@82c1b5411ec5f36699702c03723175b06ee7ee6e
85+
uses: microsoft/AL-Go-Actions/IncrementVersionNumber@v7.3
8686
with:
8787
shell: powershell
8888
token: ${{ steps.ReadSecrets.outputs.TokenForPush }}
@@ -93,7 +93,7 @@ jobs:
9393

9494
- name: Finalize the workflow
9595
if: always()
96-
uses: microsoft/AL-Go/Actions/WorkflowPostProcess@82c1b5411ec5f36699702c03723175b06ee7ee6e
96+
uses: microsoft/AL-Go-Actions/WorkflowPostProcess@v7.3
9797
env:
9898
GITHUB_TOKEN: ${{ github.token }}
9999
with:

.github/workflows/PullRequestHandler.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
if: (github.event.pull_request.base.repo.full_name != github.event.pull_request.head.repo.full_name) && (github.event_name != 'pull_request')
2929
runs-on: windows-latest
3030
steps:
31-
- uses: microsoft/AL-Go/Actions/VerifyPRChanges@82c1b5411ec5f36699702c03723175b06ee7ee6e
31+
- uses: microsoft/AL-Go-Actions/VerifyPRChanges@v7.3
3232

3333
Initialization:
3434
needs: [ PregateCheck ]
@@ -45,7 +45,7 @@ jobs:
4545
telemetryScopeJson: ${{ steps.init.outputs.telemetryScopeJson }}
4646
steps:
4747
- name: Dump Workflow Information
48-
uses: microsoft/AL-Go/Actions/DumpWorkflowInfo@82c1b5411ec5f36699702c03723175b06ee7ee6e
48+
uses: microsoft/AL-Go-Actions/DumpWorkflowInfo@v7.3
4949
with:
5050
shell: powershell
5151

@@ -57,13 +57,13 @@ jobs:
5757

5858
- name: Initialize the workflow
5959
id: init
60-
uses: microsoft/AL-Go/Actions/WorkflowInitialize@82c1b5411ec5f36699702c03723175b06ee7ee6e
60+
uses: microsoft/AL-Go-Actions/WorkflowInitialize@v7.3
6161
with:
6262
shell: powershell
6363

6464
- name: Read settings
6565
id: ReadSettings
66-
uses: microsoft/AL-Go/Actions/ReadSettings@82c1b5411ec5f36699702c03723175b06ee7ee6e
66+
uses: microsoft/AL-Go-Actions/ReadSettings@v7.3
6767
with:
6868
shell: powershell
6969
get: shortLivedArtifactsRetentionDays
@@ -76,7 +76,7 @@ jobs:
7676
7777
- name: Determine Projects To Build
7878
id: determineProjectsToBuild
79-
uses: microsoft/AL-Go/Actions/DetermineProjectsToBuild@82c1b5411ec5f36699702c03723175b06ee7ee6e
79+
uses: microsoft/AL-Go-Actions/DetermineProjectsToBuild@v7.3
8080
with:
8181
shell: powershell
8282
maxBuildDepth: ${{ env.workflowDepth }}
@@ -141,15 +141,15 @@ jobs:
141141
steps:
142142
- name: Pull Request Status Check
143143
id: PullRequestStatusCheck
144-
uses: microsoft/AL-Go/Actions/PullRequestStatusCheck@82c1b5411ec5f36699702c03723175b06ee7ee6e
144+
uses: microsoft/AL-Go-Actions/PullRequestStatusCheck@v7.3
145145
env:
146146
GITHUB_TOKEN: ${{ github.token }}
147147
with:
148148
shell: powershell
149149

150150
- name: Finalize the workflow
151151
id: PostProcess
152-
uses: microsoft/AL-Go/Actions/WorkflowPostProcess@82c1b5411ec5f36699702c03723175b06ee7ee6e
152+
uses: microsoft/AL-Go-Actions/WorkflowPostProcess@v7.3
153153
if: success() || failure()
154154
env:
155155
GITHUB_TOKEN: ${{ github.token }}

0 commit comments

Comments
 (0)