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