diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index 855d0b4..a789de8 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -16,18 +16,18 @@ jobs: steps: - name: 🛎 Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ github.head_ref }} token: ${{ secrets.WORKFLOW_COMMIT }} - name: 🟨 Setup PNPM - uses: pnpm/action-setup@v4 + uses: pnpm/action-setup@v5 with: version: latest - name: 🟩 Setup Node.js and caching - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: latest cache: 'pnpm' @@ -39,7 +39,7 @@ jobs: run: pnpm check - name: ✅ Commit code format changes - uses: stefanzweifel/git-auto-commit-action@v5 + uses: stefanzweifel/git-auto-commit-action@v7 with: commit_message: "Format code" skip_fetch: true diff --git a/.github/workflows/deploy-website.yml b/.github/workflows/deploy-website.yml index d0ff391..7993432 100644 --- a/.github/workflows/deploy-website.yml +++ b/.github/workflows/deploy-website.yml @@ -24,17 +24,17 @@ jobs: steps: - name: 🛎 Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: ref: ${{ github.head_ref }} - name: 🟨 Setup PNPM - uses: pnpm/action-setup@v4 + uses: pnpm/action-setup@v5 with: version: latest - name: 🟩 Setup Node.js and caching - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: latest cache: 'pnpm' @@ -49,7 +49,7 @@ jobs: # Upload artifact if requested - name: ⬆️ Upload artifact if: github.ref == 'refs/heads/main' - uses: actions/upload-pages-artifact@v3 + uses: actions/upload-pages-artifact@v4 with: path: 'dist' @@ -72,4 +72,4 @@ jobs: - name: 🚀 Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v4 \ No newline at end of file + uses: actions/deploy-pages@v5 \ No newline at end of file