From a0aac6ddecf67263d5c5948d5ad66a9c50bf5eec Mon Sep 17 00:00:00 2001 From: aholstrup1 Date: Mon, 21 Aug 2023 07:00:29 +0000 Subject: [PATCH] Updated AL-Go System Files --- .github/workflows/CICD.yaml | 26 ++++++++-------- .github/workflows/IncrementVersionNumber.yaml | 10 +++--- .github/workflows/PullRequestHandler.yaml | 31 ++++++------------- .../workflows/UpdateGitHubGoSystemFiles.yaml | 12 +++---- .github/workflows/_BuildALGoProject.yaml | 18 +++++------ .../.AL-Go/cloudDevEnv.ps1 | 4 +-- .../.AL-Go/localDevEnv.ps1 | 4 +-- System Application/.AL-Go/cloudDevEnv.ps1 | 4 +-- System Application/.AL-Go/localDevEnv.ps1 | 4 +-- Test Framework/.AL-Go/cloudDevEnv.ps1 | 4 +-- Test Framework/.AL-Go/localDevEnv.ps1 | 4 +-- Test Stability Tools/.AL-Go/cloudDevEnv.ps1 | 4 +-- Test Stability Tools/.AL-Go/localDevEnv.ps1 | 4 +-- 13 files changed, 58 insertions(+), 71 deletions(-) diff --git a/.github/workflows/CICD.yaml b/.github/workflows/CICD.yaml index 70d59351cb..49d621b97c 100644 --- a/.github/workflows/CICD.yaml +++ b/.github/workflows/CICD.yaml @@ -46,14 +46,14 @@ jobs: - name: Initialize the workflow id: init - uses: microsoft/AL-Go-Actions/WorkflowInitialize@v3.2 + uses: aholstrup1/AL-Go/Actions/WorkflowInitialize@main with: shell: powershell eventId: "DO0091" - name: Read settings id: ReadSettings - uses: microsoft/AL-Go-Actions/ReadSettings@v3.2 + uses: aholstrup1/AL-Go/Actions/ReadSettings@main with: shell: powershell parentTelemetryScopeJson: ${{ steps.init.outputs.telemetryScopeJson }} @@ -67,7 +67,7 @@ jobs: - name: Determine Projects To Build id: determineProjectsToBuild - uses: microsoft/AL-Go-Actions/DetermineProjectsToBuild@v3.2 + uses: aholstrup1/AL-Go/Actions/DetermineProjectsToBuild@main with: shell: powershell maxBuildDepth: ${{ env.workflowDepth }} @@ -85,7 +85,7 @@ jobs: Add-Content -Encoding UTF8 -Path $env:GITHUB_OUTPUT -Value "Secrets=$($deliveryTargetSecrets -join ',')" - name: Read secrets - uses: microsoft/AL-Go-Actions/ReadSecrets@v3.2 + uses: aholstrup1/AL-Go/Actions/ReadSecrets@main with: shell: powershell gitHubSecrets: ${{ toJson(secrets) }} @@ -157,14 +157,14 @@ jobs: uses: actions/checkout@v3 - name: Read settings - uses: microsoft/AL-Go-Actions/ReadSettings@v3.2 + uses: aholstrup1/AL-Go/Actions/ReadSettings@main with: shell: powershell parentTelemetryScopeJson: ${{ needs.Initialization.outputs.telemetryScopeJson }} get: templateUrl - name: Check for updates to AL-Go system files - uses: microsoft/AL-Go-Actions/CheckForUpdates@v3.2 + uses: aholstrup1/AL-Go/Actions/CheckForUpdates@main with: shell: powershell parentTelemetryScopeJson: ${{ needs.Initialization.outputs.telemetryScopeJson }} @@ -241,12 +241,12 @@ jobs: Add-Content -Encoding UTF8 -Path $env:GITHUB_OUTPUT -Value "envName=$envName" - name: Read settings - uses: microsoft/AL-Go-Actions/ReadSettings@v3.2 + uses: aholstrup1/AL-Go/Actions/ReadSettings@main with: shell: powershell - name: Read secrets - uses: microsoft/AL-Go-Actions/ReadSecrets@v3.2 + uses: aholstrup1/AL-Go/Actions/ReadSecrets@main with: shell: powershell gitHubSecrets: ${{ toJson(secrets) }} @@ -331,7 +331,7 @@ jobs: Write-Host "projects=$projects" - name: Deploy - uses: microsoft/AL-Go-Actions/Deploy@v3.2 + uses: aholstrup1/AL-Go/Actions/Deploy@main env: AuthContext: ${{ steps.authContext.outputs.authContext }} with: @@ -360,12 +360,12 @@ jobs: path: '.artifacts' - name: Read settings - uses: microsoft/AL-Go-Actions/ReadSettings@v3.2 + uses: aholstrup1/AL-Go/Actions/ReadSettings@main with: shell: powershell - name: Read secrets - uses: microsoft/AL-Go-Actions/ReadSecrets@v3.2 + uses: aholstrup1/AL-Go/Actions/ReadSecrets@main with: shell: powershell gitHubSecrets: ${{ toJson(secrets) }} @@ -382,7 +382,7 @@ jobs: Write-Host "deliveryContext=$deliveryContext" - name: Deliver - uses: microsoft/AL-Go-Actions/Deliver@v3.2 + uses: aholstrup1/AL-Go/Actions/Deliver@main env: deliveryContext: ${{ steps.deliveryContext.outputs.deliveryContext }} with: @@ -402,7 +402,7 @@ jobs: - name: Finalize the workflow id: PostProcess - uses: microsoft/AL-Go-Actions/WorkflowPostProcess@v3.2 + uses: aholstrup1/AL-Go/Actions/WorkflowPostProcess@main with: shell: powershell eventId: "DO0091" diff --git a/.github/workflows/IncrementVersionNumber.yaml b/.github/workflows/IncrementVersionNumber.yaml index 0ab6b134f1..7cbc93db5d 100644 --- a/.github/workflows/IncrementVersionNumber.yaml +++ b/.github/workflows/IncrementVersionNumber.yaml @@ -41,20 +41,20 @@ jobs: - name: Initialize the workflow id: init - uses: microsoft/AL-Go-Actions/WorkflowInitialize@v3.2 + uses: aholstrup1/AL-Go/Actions/WorkflowInitialize@main with: shell: powershell eventId: "DO0096" - name: Read settings - uses: microsoft/AL-Go-Actions/ReadSettings@v3.2 + uses: aholstrup1/AL-Go/Actions/ReadSettings@main if: github.event.inputs.useGhTokenWorkflow == 'true' with: shell: powershell parentTelemetryScopeJson: ${{ steps.init.outputs.telemetryScopeJson }} - name: Read secrets - uses: microsoft/AL-Go-Actions/ReadSecrets@v3.2 + uses: aholstrup1/AL-Go/Actions/ReadSecrets@main if: github.event.inputs.useGhTokenWorkflow == 'true' with: shell: powershell @@ -80,7 +80,7 @@ jobs: Add-Content -Encoding UTF8 -Path $env:GITHUB_OUTPUT -Value "ghToken=$ghToken" - name: Increment Version Number - uses: microsoft/AL-Go-Actions/IncrementVersionNumber@v3.2 + uses: aholstrup1/AL-Go/Actions/IncrementVersionNumber@main with: shell: powershell token: ${{ steps.CalculateToken.outputs.ghToken }} @@ -91,7 +91,7 @@ jobs: - name: Finalize the workflow if: always() - uses: microsoft/AL-Go-Actions/WorkflowPostProcess@v3.2 + uses: aholstrup1/AL-Go/Actions/WorkflowPostProcess@main with: shell: powershell eventId: "DO0096" diff --git a/.github/workflows/PullRequestHandler.yaml b/.github/workflows/PullRequestHandler.yaml index 2df265fb36..1927bf915b 100644 --- a/.github/workflows/PullRequestHandler.yaml +++ b/.github/workflows/PullRequestHandler.yaml @@ -29,12 +29,7 @@ jobs: if: (github.event.pull_request.base.repo.full_name != github.event.pull_request.head.repo.full_name) && (github.event_name != 'pull_request') runs-on: [ windows-latest ] steps: - - uses: actions/checkout@v3 - with: - lfs: true - ref: refs/pull/${{ github.event.number }}/merge - - - uses: microsoft/AL-Go-Actions/VerifyPRChanges@v3.2 + - uses: aholstrup1/AL-Go/Actions/VerifyPRChanges@main Initialization: needs: [ PregateCheck ] @@ -57,14 +52,14 @@ jobs: - name: Initialize the workflow id: init - uses: microsoft/AL-Go-Actions/WorkflowInitialize@v3.2 + uses: aholstrup1/AL-Go/Actions/WorkflowInitialize@main with: shell: powershell eventId: "DO0104" - name: Read settings id: ReadSettings - uses: microsoft/AL-Go-Actions/ReadSettings@v3.2 + uses: aholstrup1/AL-Go/Actions/ReadSettings@main with: shell: powershell parentTelemetryScopeJson: ${{ steps.init.outputs.telemetryScopeJson }} @@ -77,7 +72,7 @@ jobs: - name: Determine Projects To Build id: determineProjectsToBuild - uses: microsoft/AL-Go-Actions/DetermineProjectsToBuild@v3.2 + uses: aholstrup1/AL-Go/Actions/DetermineProjectsToBuild@main with: shell: powershell maxBuildDepth: ${{ env.workflowDepth }} @@ -124,21 +119,13 @@ jobs: secrets: 'licenseFileUrl,insiderSasToken,keyVaultCertificateUrl,keyVaultCertificatePassword,keyVaultClientId,gitHubPackagesContext,applicationInsightsConnectionString' publishThisBuildArtifacts: ${{ needs.Initialization.outputs.workflowDepth > 1 }} - PostProcess: + StatusCheck: runs-on: [ windows-latest ] needs: [ Initialization, Build ] - if: (!cancelled()) + if: always() steps: - - name: Checkout - uses: actions/checkout@v3 - with: - lfs: true - ref: refs/pull/${{ github.event.number }}/merge - - - name: Finalize the workflow - id: PostProcess - uses: microsoft/AL-Go-Actions/WorkflowPostProcess@v3.2 + - name: Pull Request Status Check + id: StatusCheck + uses: aholstrup1/AL-Go/Actions/PullRequestStatusCheck@main with: shell: powershell - eventId: "DO0104" - telemetryScopeJson: ${{ needs.Initialization.outputs.telemetryScopeJson }} diff --git a/.github/workflows/UpdateGitHubGoSystemFiles.yaml b/.github/workflows/UpdateGitHubGoSystemFiles.yaml index c6a82678bb..b5ad868e48 100644 --- a/.github/workflows/UpdateGitHubGoSystemFiles.yaml +++ b/.github/workflows/UpdateGitHubGoSystemFiles.yaml @@ -4,7 +4,7 @@ on: workflow_dispatch: inputs: templateUrl: - description: Template Repository URL (current is https://github.com/microsoft/AL-Go-PTE@preview) + description: Template Repository URL (current is https://github.com/aholstrup1/AL-Go@main) required: false default: '' directCommit: @@ -32,20 +32,20 @@ jobs: - name: Initialize the workflow id: init - uses: microsoft/AL-Go-Actions/WorkflowInitialize@v3.2 + uses: aholstrup1/AL-Go/Actions/WorkflowInitialize@main with: shell: powershell eventId: "DO0098" - name: Read settings - uses: microsoft/AL-Go-Actions/ReadSettings@v3.2 + uses: aholstrup1/AL-Go/Actions/ReadSettings@main with: shell: powershell parentTelemetryScopeJson: ${{ steps.init.outputs.telemetryScopeJson }} get: templateUrl - name: Read secrets - uses: microsoft/AL-Go-Actions/ReadSecrets@v3.2 + uses: aholstrup1/AL-Go/Actions/ReadSecrets@main with: shell: powershell parentTelemetryScopeJson: ${{ steps.init.outputs.telemetryScopeJson }} @@ -78,7 +78,7 @@ jobs: Add-Content -Encoding UTF8 -Path $env:GITHUB_ENV -Value "DirectCommit=$directCommit" - name: Update AL-Go system files - uses: microsoft/AL-Go-Actions/CheckForUpdates@v3.2 + uses: aholstrup1/AL-Go/Actions/CheckForUpdates@main with: shell: powershell parentTelemetryScopeJson: ${{ steps.init.outputs.telemetryScopeJson }} @@ -89,7 +89,7 @@ jobs: - name: Finalize the workflow if: always() - uses: microsoft/AL-Go-Actions/WorkflowPostProcess@v3.2 + uses: aholstrup1/AL-Go/Actions/WorkflowPostProcess@main with: shell: powershell eventId: "DO0098" diff --git a/.github/workflows/_BuildALGoProject.yaml b/.github/workflows/_BuildALGoProject.yaml index 087b1385a7..65dfeac2fb 100644 --- a/.github/workflows/_BuildALGoProject.yaml +++ b/.github/workflows/_BuildALGoProject.yaml @@ -78,7 +78,7 @@ jobs: lfs: true - name: Read settings - uses: microsoft/AL-Go-Actions/ReadSettings@v3.2 + uses: aholstrup1/AL-Go/Actions/ReadSettings@main with: shell: ${{ inputs.shell }} parentTelemetryScopeJson: ${{ inputs.parentTelemetryScopeJson }} @@ -87,7 +87,7 @@ jobs: - name: Read secrets if: github.event_name != 'pull_request' - uses: microsoft/AL-Go-Actions/ReadSecrets@v3.2 + uses: aholstrup1/AL-Go/Actions/ReadSecrets@main with: shell: ${{ inputs.shell }} parentTelemetryScopeJson: ${{ inputs.parentTelemetryScopeJson }} @@ -95,7 +95,7 @@ jobs: getSecrets: '${{ inputs.secrets }},appDependencyProbingPathsSecrets' - name: Determine ArtifactUrl - uses: microsoft/AL-Go-Actions/DetermineArtifactUrl@v3.2 + uses: aholstrup1/AL-Go/Actions/DetermineArtifactUrl@main id: determineArtifactUrl with: shell: ${{ inputs.shell }} @@ -111,7 +111,7 @@ jobs: - name: Download Project Dependencies id: DownloadProjectDependencies - uses: microsoft/AL-Go-Actions/DownloadProjectDependencies@v3.2 + uses: aholstrup1/AL-Go/Actions/DownloadProjectDependencies@main with: shell: ${{ inputs.shell }} project: ${{ inputs.project }} @@ -120,7 +120,7 @@ jobs: - name: Run pipeline id: RunPipeline - uses: microsoft/AL-Go-Actions/RunPipeline@v3.2 + uses: aholstrup1/AL-Go/Actions/RunPipeline@main env: BuildMode: ${{ inputs.buildMode }} with: @@ -135,7 +135,7 @@ jobs: - name: Sign if: inputs.signArtifacts && env.doNotSignApps == 'False' && env.keyVaultCodesignCertificateName != '' id: sign - uses: microsoft/AL-Go-Actions/Sign@v3.2 + uses: aholstrup1/AL-Go/Actions/Sign@main with: shell: ${{ needs.Initialization.outputs.githubRunnerShell }} azureCredentialsJson: ${{ secrets.AZURE_CREDENTIALS }} @@ -144,7 +144,7 @@ jobs: - name: Calculate Artifact names id: calculateArtifactsNames - uses: microsoft/AL-Go-Actions/CalculateArtifactNames@v3.2 + uses: aholstrup1/AL-Go/Actions/CalculateArtifactNames@main if: success() || failure() with: shell: ${{ inputs.shell }} @@ -230,7 +230,7 @@ jobs: - name: Analyze Test Results id: analyzeTestResults if: success() || failure() - uses: microsoft/AL-Go-Actions/AnalyzeTests@v3.2 + uses: aholstrup1/AL-Go/Actions/AnalyzeTests@main with: shell: ${{ inputs.shell }} parentTelemetryScopeJson: ${{ inputs.parentTelemetryScopeJson }} @@ -238,7 +238,7 @@ jobs: - name: Cleanup if: always() - uses: microsoft/AL-Go-Actions/PipelineCleanup@v3.2 + uses: aholstrup1/AL-Go/Actions/PipelineCleanup@main with: shell: ${{ inputs.shell }} parentTelemetryScopeJson: ${{ inputs.parentTelemetryScopeJson }} diff --git a/System Application Modules/.AL-Go/cloudDevEnv.ps1 b/System Application Modules/.AL-Go/cloudDevEnv.ps1 index 37fd63ccad..7ada5be979 100644 --- a/System Application Modules/.AL-Go/cloudDevEnv.ps1 +++ b/System Application Modules/.AL-Go/cloudDevEnv.ps1 @@ -17,10 +17,10 @@ $webClient.CachePolicy = New-Object System.Net.Cache.RequestCachePolicy -argumen $webClient.Encoding = [System.Text.Encoding]::UTF8 Write-Host "Downloading GitHub Helper module" $GitHubHelperPath = "$([System.IO.Path]::GetTempFileName()).psm1" -$webClient.DownloadFile('https://raw.githubusercontent.com/microsoft/AL-Go-Actions/v3.2/Github-Helper.psm1', $GitHubHelperPath) +$webClient.DownloadFile('https://raw.githubusercontent.com/aholstrup1/AL-Go/main/Actions/Github-Helper.psm1', $GitHubHelperPath) Write-Host "Downloading AL-Go Helper script" $ALGoHelperPath = "$([System.IO.Path]::GetTempFileName()).ps1" -$webClient.DownloadFile('https://raw.githubusercontent.com/microsoft/AL-Go-Actions/v3.2/AL-Go-Helper.ps1', $ALGoHelperPath) +$webClient.DownloadFile('https://raw.githubusercontent.com/aholstrup1/AL-Go/main/Actions/AL-Go-Helper.ps1', $ALGoHelperPath) Import-Module $GitHubHelperPath . $ALGoHelperPath -local diff --git a/System Application Modules/.AL-Go/localDevEnv.ps1 b/System Application Modules/.AL-Go/localDevEnv.ps1 index 419b213ee2..01a1cb4be2 100644 --- a/System Application Modules/.AL-Go/localDevEnv.ps1 +++ b/System Application Modules/.AL-Go/localDevEnv.ps1 @@ -20,10 +20,10 @@ $webClient.CachePolicy = New-Object System.Net.Cache.RequestCachePolicy -argumen $webClient.Encoding = [System.Text.Encoding]::UTF8 Write-Host "Downloading GitHub Helper module" $GitHubHelperPath = "$([System.IO.Path]::GetTempFileName()).psm1" -$webClient.DownloadFile('https://raw.githubusercontent.com/microsoft/AL-Go-Actions/v3.2/Github-Helper.psm1', $GitHubHelperPath) +$webClient.DownloadFile('https://raw.githubusercontent.com/aholstrup1/AL-Go/main/Actions/Github-Helper.psm1', $GitHubHelperPath) Write-Host "Downloading AL-Go Helper script" $ALGoHelperPath = "$([System.IO.Path]::GetTempFileName()).ps1" -$webClient.DownloadFile('https://raw.githubusercontent.com/microsoft/AL-Go-Actions/v3.2/AL-Go-Helper.ps1', $ALGoHelperPath) +$webClient.DownloadFile('https://raw.githubusercontent.com/aholstrup1/AL-Go/main/Actions/AL-Go-Helper.ps1', $ALGoHelperPath) Import-Module $GitHubHelperPath . $ALGoHelperPath -local diff --git a/System Application/.AL-Go/cloudDevEnv.ps1 b/System Application/.AL-Go/cloudDevEnv.ps1 index 37fd63ccad..7ada5be979 100644 --- a/System Application/.AL-Go/cloudDevEnv.ps1 +++ b/System Application/.AL-Go/cloudDevEnv.ps1 @@ -17,10 +17,10 @@ $webClient.CachePolicy = New-Object System.Net.Cache.RequestCachePolicy -argumen $webClient.Encoding = [System.Text.Encoding]::UTF8 Write-Host "Downloading GitHub Helper module" $GitHubHelperPath = "$([System.IO.Path]::GetTempFileName()).psm1" -$webClient.DownloadFile('https://raw.githubusercontent.com/microsoft/AL-Go-Actions/v3.2/Github-Helper.psm1', $GitHubHelperPath) +$webClient.DownloadFile('https://raw.githubusercontent.com/aholstrup1/AL-Go/main/Actions/Github-Helper.psm1', $GitHubHelperPath) Write-Host "Downloading AL-Go Helper script" $ALGoHelperPath = "$([System.IO.Path]::GetTempFileName()).ps1" -$webClient.DownloadFile('https://raw.githubusercontent.com/microsoft/AL-Go-Actions/v3.2/AL-Go-Helper.ps1', $ALGoHelperPath) +$webClient.DownloadFile('https://raw.githubusercontent.com/aholstrup1/AL-Go/main/Actions/AL-Go-Helper.ps1', $ALGoHelperPath) Import-Module $GitHubHelperPath . $ALGoHelperPath -local diff --git a/System Application/.AL-Go/localDevEnv.ps1 b/System Application/.AL-Go/localDevEnv.ps1 index 419b213ee2..01a1cb4be2 100644 --- a/System Application/.AL-Go/localDevEnv.ps1 +++ b/System Application/.AL-Go/localDevEnv.ps1 @@ -20,10 +20,10 @@ $webClient.CachePolicy = New-Object System.Net.Cache.RequestCachePolicy -argumen $webClient.Encoding = [System.Text.Encoding]::UTF8 Write-Host "Downloading GitHub Helper module" $GitHubHelperPath = "$([System.IO.Path]::GetTempFileName()).psm1" -$webClient.DownloadFile('https://raw.githubusercontent.com/microsoft/AL-Go-Actions/v3.2/Github-Helper.psm1', $GitHubHelperPath) +$webClient.DownloadFile('https://raw.githubusercontent.com/aholstrup1/AL-Go/main/Actions/Github-Helper.psm1', $GitHubHelperPath) Write-Host "Downloading AL-Go Helper script" $ALGoHelperPath = "$([System.IO.Path]::GetTempFileName()).ps1" -$webClient.DownloadFile('https://raw.githubusercontent.com/microsoft/AL-Go-Actions/v3.2/AL-Go-Helper.ps1', $ALGoHelperPath) +$webClient.DownloadFile('https://raw.githubusercontent.com/aholstrup1/AL-Go/main/Actions/AL-Go-Helper.ps1', $ALGoHelperPath) Import-Module $GitHubHelperPath . $ALGoHelperPath -local diff --git a/Test Framework/.AL-Go/cloudDevEnv.ps1 b/Test Framework/.AL-Go/cloudDevEnv.ps1 index 37fd63ccad..7ada5be979 100644 --- a/Test Framework/.AL-Go/cloudDevEnv.ps1 +++ b/Test Framework/.AL-Go/cloudDevEnv.ps1 @@ -17,10 +17,10 @@ $webClient.CachePolicy = New-Object System.Net.Cache.RequestCachePolicy -argumen $webClient.Encoding = [System.Text.Encoding]::UTF8 Write-Host "Downloading GitHub Helper module" $GitHubHelperPath = "$([System.IO.Path]::GetTempFileName()).psm1" -$webClient.DownloadFile('https://raw.githubusercontent.com/microsoft/AL-Go-Actions/v3.2/Github-Helper.psm1', $GitHubHelperPath) +$webClient.DownloadFile('https://raw.githubusercontent.com/aholstrup1/AL-Go/main/Actions/Github-Helper.psm1', $GitHubHelperPath) Write-Host "Downloading AL-Go Helper script" $ALGoHelperPath = "$([System.IO.Path]::GetTempFileName()).ps1" -$webClient.DownloadFile('https://raw.githubusercontent.com/microsoft/AL-Go-Actions/v3.2/AL-Go-Helper.ps1', $ALGoHelperPath) +$webClient.DownloadFile('https://raw.githubusercontent.com/aholstrup1/AL-Go/main/Actions/AL-Go-Helper.ps1', $ALGoHelperPath) Import-Module $GitHubHelperPath . $ALGoHelperPath -local diff --git a/Test Framework/.AL-Go/localDevEnv.ps1 b/Test Framework/.AL-Go/localDevEnv.ps1 index 419b213ee2..01a1cb4be2 100644 --- a/Test Framework/.AL-Go/localDevEnv.ps1 +++ b/Test Framework/.AL-Go/localDevEnv.ps1 @@ -20,10 +20,10 @@ $webClient.CachePolicy = New-Object System.Net.Cache.RequestCachePolicy -argumen $webClient.Encoding = [System.Text.Encoding]::UTF8 Write-Host "Downloading GitHub Helper module" $GitHubHelperPath = "$([System.IO.Path]::GetTempFileName()).psm1" -$webClient.DownloadFile('https://raw.githubusercontent.com/microsoft/AL-Go-Actions/v3.2/Github-Helper.psm1', $GitHubHelperPath) +$webClient.DownloadFile('https://raw.githubusercontent.com/aholstrup1/AL-Go/main/Actions/Github-Helper.psm1', $GitHubHelperPath) Write-Host "Downloading AL-Go Helper script" $ALGoHelperPath = "$([System.IO.Path]::GetTempFileName()).ps1" -$webClient.DownloadFile('https://raw.githubusercontent.com/microsoft/AL-Go-Actions/v3.2/AL-Go-Helper.ps1', $ALGoHelperPath) +$webClient.DownloadFile('https://raw.githubusercontent.com/aholstrup1/AL-Go/main/Actions/AL-Go-Helper.ps1', $ALGoHelperPath) Import-Module $GitHubHelperPath . $ALGoHelperPath -local diff --git a/Test Stability Tools/.AL-Go/cloudDevEnv.ps1 b/Test Stability Tools/.AL-Go/cloudDevEnv.ps1 index 37fd63ccad..7ada5be979 100644 --- a/Test Stability Tools/.AL-Go/cloudDevEnv.ps1 +++ b/Test Stability Tools/.AL-Go/cloudDevEnv.ps1 @@ -17,10 +17,10 @@ $webClient.CachePolicy = New-Object System.Net.Cache.RequestCachePolicy -argumen $webClient.Encoding = [System.Text.Encoding]::UTF8 Write-Host "Downloading GitHub Helper module" $GitHubHelperPath = "$([System.IO.Path]::GetTempFileName()).psm1" -$webClient.DownloadFile('https://raw.githubusercontent.com/microsoft/AL-Go-Actions/v3.2/Github-Helper.psm1', $GitHubHelperPath) +$webClient.DownloadFile('https://raw.githubusercontent.com/aholstrup1/AL-Go/main/Actions/Github-Helper.psm1', $GitHubHelperPath) Write-Host "Downloading AL-Go Helper script" $ALGoHelperPath = "$([System.IO.Path]::GetTempFileName()).ps1" -$webClient.DownloadFile('https://raw.githubusercontent.com/microsoft/AL-Go-Actions/v3.2/AL-Go-Helper.ps1', $ALGoHelperPath) +$webClient.DownloadFile('https://raw.githubusercontent.com/aholstrup1/AL-Go/main/Actions/AL-Go-Helper.ps1', $ALGoHelperPath) Import-Module $GitHubHelperPath . $ALGoHelperPath -local diff --git a/Test Stability Tools/.AL-Go/localDevEnv.ps1 b/Test Stability Tools/.AL-Go/localDevEnv.ps1 index 419b213ee2..01a1cb4be2 100644 --- a/Test Stability Tools/.AL-Go/localDevEnv.ps1 +++ b/Test Stability Tools/.AL-Go/localDevEnv.ps1 @@ -20,10 +20,10 @@ $webClient.CachePolicy = New-Object System.Net.Cache.RequestCachePolicy -argumen $webClient.Encoding = [System.Text.Encoding]::UTF8 Write-Host "Downloading GitHub Helper module" $GitHubHelperPath = "$([System.IO.Path]::GetTempFileName()).psm1" -$webClient.DownloadFile('https://raw.githubusercontent.com/microsoft/AL-Go-Actions/v3.2/Github-Helper.psm1', $GitHubHelperPath) +$webClient.DownloadFile('https://raw.githubusercontent.com/aholstrup1/AL-Go/main/Actions/Github-Helper.psm1', $GitHubHelperPath) Write-Host "Downloading AL-Go Helper script" $ALGoHelperPath = "$([System.IO.Path]::GetTempFileName()).ps1" -$webClient.DownloadFile('https://raw.githubusercontent.com/microsoft/AL-Go-Actions/v3.2/AL-Go-Helper.ps1', $ALGoHelperPath) +$webClient.DownloadFile('https://raw.githubusercontent.com/aholstrup1/AL-Go/main/Actions/AL-Go-Helper.ps1', $ALGoHelperPath) Import-Module $GitHubHelperPath . $ALGoHelperPath -local