Skip to content

Commit 51f663e

Browse files
MattB-msftCopilot
andauthored
Users/mbarbour/update for async add component (#644)
* Update package.json for 0.1.134 Updating PowerPlatform CLI wrapper. * Add Async to AddSolutionComponet * Add Async Run operations * Update to Node 24 * Move to Node 22 * update some node 24 laggers * Drop to Node 20 * Update package * Update Package * Update package file * Package * package updates * Updating Distro Using Npm run update-dist * Update PAC version * Update Pac File * Update src/actions/add-solution-component/actionLaunch.ts Co-authored-by: Copilot <[email protected]> * Revert Copilot Request change. --------- Co-authored-by: Copilot <[email protected]>
1 parent 7a641a8 commit 51f663e

File tree

74 files changed

+808583
-1348266
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+808583
-1348266
lines changed

.azure-pipelines/ComplianceCheckBuild.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ pool:
2828

2929
steps:
3030
- task: NodeTool@0
31-
displayName: 'Use nodejs 16.x'
31+
displayName: 'Use nodejs 20.x'
3232
inputs:
33-
versionSpec: '16.x'
33+
versionSpec: '20.x'
3434

3535
# need to authenticate to npm package feed in microsoft/powerplatform-cli-wrapper (see also README.md)
3636
- task: npmAuthenticate@0

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
- name: Setup Node.js environment
5050
uses: actions/setup-node@v3
5151
with:
52-
node-version: 16.x
52+
node-version: 20.x
5353
registry-url: https://npm.pkg.github.com
5454

5555
- name: Install npm@9

.github/workflows/paportal-rolling-instance-actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Setup Node.js environment
4141
uses: actions/setup-node@v3
4242
with:
43-
node-version: 16.x
43+
node-version: 20.x
4444
registry-url: https://npm.pkg.github.com
4545

4646
- name: Install NPM packages

.github/workflows/pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Setup Node.js environment
2929
uses: actions/setup-node@v3
3030
with:
31-
node-version: 16.x
31+
node-version: 20.x
3232
registry-url: https://npm.pkg.github.com
3333

3434
- name: Install npm@9

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ inputs:
1919
required: false
2020

2121
runs:
22-
using: 'node16'
22+
using: 'node20'
2323
main: '../dist/actions/who-am-i/index.js'
2424
# main: '../out/actions/who-am-i/index.js'

actions-install/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ inputs:
2929
required: false
3030

3131
runs:
32-
using: 'node16'
32+
using: 'node20'
3333
main: '../dist/actions/actions-install/index.js'
3434

add-solution-component/action.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,11 @@ inputs:
4343
description: 'Indicates whether other solution components that are required by the solution component that you are adding should also be added to the unmanaged solution'
4444
required: false
4545

46+
run-asynchronously:
47+
description: 'Runs operation asynchronously.'
48+
required: false
49+
default: 'false'
50+
4651
runs:
47-
using: 'node16'
52+
using: 'node20'
4853
main: '../dist/actions/add-solution-component/index.js'

assign-group/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,5 @@ inputs:
5252
required: false
5353

5454
runs:
55-
using: 'node16'
55+
using: 'node20'
5656
main: '../dist/actions/assign-group/index.js'

assign-user/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,5 @@ inputs:
4545
required: false
4646

4747
runs:
48-
using: 'node16'
48+
using: 'node20'
4949
main: '../dist/actions/assign-user/index.js'

backup-environment/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,5 @@ inputs:
4646
default: 'Public'
4747

4848
runs:
49-
using: 'node16'
49+
using: 'node20'
5050
main: '../dist/actions/backup-environment/index.js'

0 commit comments

Comments
 (0)