From 04d50a7949853d0cb2d9b25d78f01d5f4631d819 Mon Sep 17 00:00:00 2001 From: Nishant Arora <1895906+whizzzkid@users.noreply.github.com> Date: Fri, 6 Oct 2023 02:53:47 -0600 Subject: [PATCH 1/5] =?UTF-8?q?fix:=20=F0=9F=93=8C=20Pin=20Node=20Version?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nishant Arora <1895906+whizzzkid@users.noreply.github.com> --- .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 9358dba5a..3f96982bf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ jobs: - name: Install Node.js uses: actions/setup-node@v3 with: - node-version: 'lts/*' + node-version: '18.17.1' - name: Read ipfs-webui CID from package.json id: read-webui-version From 861869de9dfc3200509735e571c07ac7487d7b8c Mon Sep 17 00:00:00 2001 From: Nishant Arora <1895906+whizzzkid@users.noreply.github.com> Date: Fri, 6 Oct 2023 03:01:47 -0600 Subject: [PATCH 2/5] =?UTF-8?q?fix(ci):=20=F0=9F=97=91=EF=B8=8F=20Cleaning?= =?UTF-8?q?=20cache=20prior?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nishant Arora <1895906+whizzzkid@users.noreply.github.com> --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3f96982bf..0fe5aa589 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ jobs: - name: Install Node.js uses: actions/setup-node@v3 with: - node-version: '18.17.1' + node-version: 'lts/*' - name: Read ipfs-webui CID from package.json id: read-webui-version @@ -120,7 +120,7 @@ jobs: if: steps.webui-cache.outputs.cache-hit != 'true' - name: Install dependencies - run: npm ci --prefer-offline --no-audit --progress=false --cache ${{ github.workspace }}/.cache/npm + run: npm cache clean --force && npm ci --prefer-offline --no-audit --progress=false --cache ${{ github.workspace }}/.cache/npm - name: Build run: npm run build From 971abde8429926d355f00edbfeb9b33a019c0bdf Mon Sep 17 00:00:00 2001 From: Nishant Arora <1895906+whizzzkid@users.noreply.github.com> Date: Fri, 6 Oct 2023 03:05:22 -0600 Subject: [PATCH 3/5] =?UTF-8?q?fix(ci):=20=F0=9F=97=91=EF=B8=8F=20removing?= =?UTF-8?q?=20cache=20altogether?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nishant Arora <1895906+whizzzkid@users.noreply.github.com> --- .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 0fe5aa589..39def6223 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -120,7 +120,7 @@ jobs: if: steps.webui-cache.outputs.cache-hit != 'true' - name: Install dependencies - run: npm cache clean --force && npm ci --prefer-offline --no-audit --progress=false --cache ${{ github.workspace }}/.cache/npm + run: npm ci --prefer-offline --no-audit --progress=false - name: Build run: npm run build From 8e56830697471e6e3945bedff9c482ec547eb720 Mon Sep 17 00:00:00 2001 From: Nishant Arora <1895906+whizzzkid@users.noreply.github.com> Date: Fri, 6 Oct 2023 03:13:52 -0600 Subject: [PATCH 4/5] =?UTF-8?q?fix(ci):=20=F0=9F=92=9A=20Slashes=3F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nishant Arora <1895906+whizzzkid@users.noreply.github.com> --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 39def6223..7af06760b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,9 +11,9 @@ on: - main env: - XDG_CACHE_HOME: ${{ github.workspace }}/.cache - ELECTRON_CACHE: ${{ github.workspace }}/.cache/electron - ELECTRON_BUILDER_CACHE: ${{ github.workspace }}/.cache/electron-builder + XDG_CACHE_HOME: ${{ github.workspace }}\.cache + ELECTRON_CACHE: ${{ github.workspace }}\.cache\electron + ELECTRON_BUILDER_CACHE: ${{ github.workspace }}\.cache\electron-builder jobs: @@ -120,7 +120,7 @@ jobs: if: steps.webui-cache.outputs.cache-hit != 'true' - name: Install dependencies - run: npm ci --prefer-offline --no-audit --progress=false + run: npm ci --prefer-offline --no-audit --progress=false --cache ${{ github.workspace }}\.cache\npm - name: Build run: npm run build From fe6f9f4998b60735d30bb1370057e3ecada47d6e Mon Sep 17 00:00:00 2001 From: Nishant Arora <1895906+whizzzkid@users.noreply.github.com> Date: Fri, 6 Oct 2023 03:19:10 -0600 Subject: [PATCH 5/5] =?UTF-8?q?fix(ci):=20=E2=8F=AA=EF=B8=8F=20That=20didn?= =?UTF-8?q?'t=20work?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nishant Arora <1895906+whizzzkid@users.noreply.github.com> --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7af06760b..8e9ba427a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,9 +11,9 @@ on: - main env: - XDG_CACHE_HOME: ${{ github.workspace }}\.cache - ELECTRON_CACHE: ${{ github.workspace }}\.cache\electron - ELECTRON_BUILDER_CACHE: ${{ github.workspace }}\.cache\electron-builder + XDG_CACHE_HOME: ${{ github.workspace }}/.cache + ELECTRON_CACHE: ${{ github.workspace }}/.cache/electron + ELECTRON_BUILDER_CACHE: ${{ github.workspace }}/.cache/electron-builder jobs: @@ -120,7 +120,7 @@ jobs: if: steps.webui-cache.outputs.cache-hit != 'true' - name: Install dependencies - run: npm ci --prefer-offline --no-audit --progress=false --cache ${{ github.workspace }}\.cache\npm + run: npm ci --cache ${{ github.workspace }}/.cache/npm - name: Build run: npm run build