diff --git a/.github/workflows/DoctorUpgrade.yml b/.github/workflows/DoctorUpgrade.yml new file mode 100644 index 0000000000000..29b536f0310e1 --- /dev/null +++ b/.github/workflows/DoctorUpgrade.yml @@ -0,0 +1,29 @@ +name: Doctor Update + +on: + workflow_dispatch: {} + +jobs: + upgrade: + name: Doctor Upgrade + permissions: + contents: read + runs-on: ubuntu-latest + steps: + - name: Check Out + uses: actions/checkout@v3 + + - name: Setup Node + uses: actions/setup-node@v3 + with: + node-version: 14 + + - name: Tools Install + run: |- + npm -g install npm-check-updates + - name: Upgrade Dependencies + run: |- + ncu --upgrade --workspaces --doctor --doctorTest="yarn build" --verbose + env: + CDK_INTEG_ACCOUNT: 123456789012 + CDK_INTEG_REGION: us-west-2 diff --git a/.github/workflows/auto-approve.yml b/.github/workflows/auto-approve.yml index 9a7dd7e8d5a0d..1717e8fc6111f 100644 --- a/.github/workflows/auto-approve.yml +++ b/.github/workflows/auto-approve.yml @@ -12,6 +12,6 @@ jobs: permissions: pull-requests: write steps: - - uses: hmarr/auto-approve-action@v3.1.0 + - uses: hmarr/auto-approve-action@v3.2.1 with: github-token: "${{ secrets.GITHUB_TOKEN }}"