diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml index e3750ae3..726e3bf7 100644 --- a/.github/workflows/github-actions-demo.yml +++ b/.github/workflows/github-actions-demo.yml @@ -12,7 +12,7 @@ jobs: - run: echo "This job is now running on a ${{ runner.os }} server hosted by GitHub!" - run: echo "The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}." - name: Check out repository code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - run: echo "The ${{ github.repository }} repository has been cloned to the runner." - run: echo "The workflow is now ready to test your code on the runner." - name: List files in the repository diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index a3921a80..456cdf24 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -9,15 +9,15 @@ jobs: timeout-minutes: 60 runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: '18.x' - name: Install dependencies run: npm ci - name: Install Playwright run: npx playwright install --with-deps - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 if: always() with: name: playwright-report diff --git a/README.md b/README.md index 40360fcc..b8b62e93 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,7 @@ This [Angular SDK updates](https://docs.pega.com/bundle/constellation-sdk/page/c + ***IMPORTANT:*** If you are upgrading from a previous version of Angular SDK, please follow the guidelines documented in [Upgrading Angular SDK](https://docs.pega.com/bundle/constellation-sdk/page/constellation-sdks/sdks/upgrading-angular-sdk.html). --- @@ -35,7 +36,7 @@ The Angular SDK includes a ConstellationJS to Angular bridge and sample DX compo ## Pega Infinity Server and Constellation architecture-enabled Application -This version of the Angular SDK assumes that you have access to a Pega Infinity server (**24.1.0+**) running an application that is configured to run using the Constellation UI service. +This version of the Angular SDK assumes that you have access to a Pega Infinity server (**24.1.0+**) running an application that is configured to run using the Constellation UI service. - If you need to use Infinity 23.1.x, please use the **release/23.1.10** branch. - If you need to use Infinity 8.8.x, please use the **release/8.8.10** branch.