From 51310e97da396bf747a3190d85c06f3be5d9a04d Mon Sep 17 00:00:00 2001 From: naman-contentstack Date: Thu, 6 Feb 2025 11:58:04 +0530 Subject: [PATCH 1/2] updated breaking release workflow --- .github/workflows/release.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5e0c2f0..f1dc3e8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,11 +11,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup Node.js - uses: actions/setup-node@v3.7.0 + uses: actions/setup-node@v4 with: node-version: "18.x" - name: Install dependencies @@ -25,7 +25,7 @@ jobs: rm -rf dist npm run prepare - name: Upload dist - uses: actions/upload-artifact@v3.1.2 + uses: actions/upload-artifact@v4 with: name: dist path: dist @@ -36,17 +36,17 @@ jobs: needs: build steps: - name: Checkout - uses: actions/checkout@v3.5.3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup Node.js - uses: actions/setup-node@v3.7.0 + uses: actions/setup-node@v4 with: node-version: "18.x" - name: Install dependencies run: npm install - name: Download dist - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: dist path: dist From a4a8d42d71c54345b17a31976f8266b322d188b6 Mon Sep 17 00:00:00 2001 From: raj pandey Date: Thu, 6 Feb 2025 12:43:24 +0530 Subject: [PATCH 2/2] workflow update --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f1dc3e8..d36abb3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,7 +17,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: "18.x" + node-version: "22.x" - name: Install dependencies run: npm install - name: Build @@ -42,7 +42,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: "18.x" + node-version: "22.x" - name: Install dependencies run: npm install - name: Download dist