diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 44d793c..12fddb2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,16 +21,16 @@ jobs: TURBO_TEAM: ${{ github.repository_owner }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Use Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: "18.x" registry-url: "https://registry.npmjs.org" - name: Cache dependencies id: cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: "**/node_modules" key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} @@ -40,7 +40,7 @@ jobs: run: yarn install --immutable - name: Setup local cache server for Turborepo - uses: felixmosh/turborepo-gh-artifacts@v2 + uses: felixmosh/turborepo-gh-artifacts@v3 with: repo-token: ${{ secrets.GITHUB_TOKEN }} server-token: ${{ secrets.TURBO_SERVER_TOKEN }} @@ -49,7 +49,7 @@ jobs: - run: yarn turbo build --color --concurrency=5 - name: Upload Artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: dist path: | @@ -63,17 +63,17 @@ jobs: if: ${{ github.event_name == 'push' }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: "18.x" registry-url: "https://registry.npmjs.org" - name: Cache dependencies id: cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: "**/node_modules" key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} @@ -83,7 +83,7 @@ jobs: run: yarn install --immutable - name: Setup local cache server for Turborepo - uses: felixmosh/turborepo-gh-artifacts@v2 + uses: felixmosh/turborepo-gh-artifacts@v3 with: repo-token: ${{ secrets.GITHUB_TOKEN }} server-token: ${{ secrets.TURBO_SERVER_TOKEN }} @@ -103,7 +103,7 @@ jobs: NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} - name: Upload Artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: dist path: | @@ -117,19 +117,19 @@ jobs: if: ${{ github.event_name == 'release' }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Download Artifacts - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 - name: Setup Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: "18.x" registry-url: "https://registry.npmjs.org" - name: Cache dependencies id: cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: "**/node_modules" key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }} @@ -139,7 +139,7 @@ jobs: run: yarn install --immutable - name: Setup local cache server for Turborepo - uses: felixmosh/turborepo-gh-artifacts@v2 + uses: felixmosh/turborepo-gh-artifacts@v3 with: repo-token: ${{ secrets.GITHUB_TOKEN }} server-token: ${{ secrets.TURBO_SERVER_TOKEN }} diff --git a/src/config-schema.ts b/src/config-schema.ts index b2dbcae..6234422 100644 --- a/src/config-schema.ts +++ b/src/config-schema.ts @@ -21,7 +21,7 @@ export const configSchema = { }, link: { _type: Type.String, - _default: "${openmrsSpaBase}/home", + _default: "${openmrsSpaBase}/home/initial-page", _description: "The link to redirect to when the logo is clicked", }, },