From bb7259f7f68d58381be8f064c48cc4e11deab516 Mon Sep 17 00:00:00 2001 From: vickytechkey Date: Thu, 10 Sep 2026 18:47:41 +0530 Subject: [PATCH] chore: update action references to use fully qualified URLs and upgrade checkout to v4 --- .forgejo/workflows/ci-cd-beta.yml | 6 +++--- .forgejo/workflows/ci-cd-main.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.forgejo/workflows/ci-cd-beta.yml b/.forgejo/workflows/ci-cd-beta.yml index 8c89687..a056556 100644 --- a/.forgejo/workflows/ci-cd-beta.yml +++ b/.forgejo/workflows/ci-cd-beta.yml @@ -11,7 +11,7 @@ jobs: container: node:22 steps: - name: Checkout Code - uses: actions/checkout@v3 + uses: https://github.com/actions/checkout@v4 - name: Install dependencies run: npm ci @@ -26,7 +26,7 @@ jobs: run: npm run build - name: Upload Build Artifact - uses: actions/upload-artifact@v3 + uses: https://github.com/actions/upload-artifact@v3 with: name: dist path: dist/ @@ -37,7 +37,7 @@ jobs: container: node:22 steps: - name: Download Build Artifact - uses: actions/download-artifact@v3 + uses: https://github.com/actions/download-artifact@v3 with: name: dist path: dist diff --git a/.forgejo/workflows/ci-cd-main.yml b/.forgejo/workflows/ci-cd-main.yml index 65a41bf..e748d8d 100644 --- a/.forgejo/workflows/ci-cd-main.yml +++ b/.forgejo/workflows/ci-cd-main.yml @@ -11,7 +11,7 @@ jobs: container: node:22 steps: - name: Checkout Code - uses: actions/checkout@v3 + uses: https://github.com/actions/checkout@v4 - name: Install dependencies run: npm ci @@ -26,7 +26,7 @@ jobs: run: npm run build - name: Upload Build Artifact - uses: actions/upload-artifact@v3 + uses: https://github.com/actions/upload-artifact@v3 with: name: dist path: dist/ @@ -37,7 +37,7 @@ jobs: container: node:22 steps: - name: Download Build Artifact - uses: actions/download-artifact@v3 + uses: https://github.com/actions/download-artifact@v3 with: name: dist path: dist -- 2.45.2