From c1569c8dd66f37e4b1fad7ed60b95a3d20752e61 Mon Sep 17 00:00:00 2001 From: Shashi Lo <362527+shashilo@users.noreply.github.com> Date: Wed, 3 Jul 2024 10:03:34 -0500 Subject: [PATCH 1/3] Update ci.yml --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 937cc324..250e4c9e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: - uses: actions/checkout@v2 - uses: pnpm/action-setup@v2 with: - version: 8 + version: 9 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v2 From 78863ab906959b935eb3852d290e6471cdfcac1a Mon Sep 17 00:00:00 2001 From: Shashi Lo <362527+shashilo@users.noreply.github.com> Date: Wed, 3 Jul 2024 13:15:55 -0500 Subject: [PATCH 2/3] update actions version --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 250e4c9e..71c7709c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,13 +17,13 @@ jobs: node-version: ['20.x'] steps: - - uses: actions/checkout@v2 - - uses: pnpm/action-setup@v2 + - uses: actions/checkout@v2.5 + - uses: pnpm/action-setup@v2.5 with: version: 9 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v2.5 with: node-version: ${{ matrix.node-version }} cache: 'pnpm' @@ -59,15 +59,15 @@ jobs: NEXT_PUBLIC_APPWRITE_PROJECT_ID: ${{ secrets.NEXT_PUBLIC_APPWRITE_PROJECT_ID }} NEXT_PUBLIC_APPWRITE_DATABASE_ID: ${{ secrets.NEXT_PUBLIC_APPWRITE_DATABASE_ID }} steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 + - uses: actions/checkout@v2.5 + - uses: actions/setup-node@v2.5 with: node-version: lts/* - run: npm install -g pnpm && pnpm install - run: pnpm exec playwright install --with-deps - run: pnpm exec playwright test - name: Upload Artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v2.5 if: always() with: name: playwright-report From 7d1de36a5962df858bfe8ac17d71183f15b4767e Mon Sep 17 00:00:00 2001 From: Shashi Lo <362527+shashilo@users.noreply.github.com> Date: Wed, 3 Jul 2024 13:17:54 -0500 Subject: [PATCH 3/3] Upgrade actions version to 4 --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 71c7709c..b2e11284 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,13 +17,13 @@ jobs: node-version: ['20.x'] steps: - - uses: actions/checkout@v2.5 - - uses: pnpm/action-setup@v2.5 + - uses: actions/checkout@v4 + - uses: pnpm/action-setup@v4 with: version: 9 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2.5 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} cache: 'pnpm' @@ -59,15 +59,15 @@ jobs: NEXT_PUBLIC_APPWRITE_PROJECT_ID: ${{ secrets.NEXT_PUBLIC_APPWRITE_PROJECT_ID }} NEXT_PUBLIC_APPWRITE_DATABASE_ID: ${{ secrets.NEXT_PUBLIC_APPWRITE_DATABASE_ID }} steps: - - uses: actions/checkout@v2.5 - - uses: actions/setup-node@v2.5 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: lts/* - run: npm install -g pnpm && pnpm install - run: pnpm exec playwright install --with-deps - run: pnpm exec playwright test - name: Upload Artifacts - uses: actions/upload-artifact@v2.5 + uses: actions/upload-artifact@v4 if: always() with: name: playwright-report