From 6ebcf553a7c570b0d7268fe160cfba2a70946875 Mon Sep 17 00:00:00 2001 From: Stefan Verhoeven Date: Mon, 20 Apr 2026 09:38:18 +0200 Subject: [PATCH] Update actions See https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/ --- .github/workflows/deploy.yml | 6 +++--- .github/workflows/quality.yml | 2 +- .github/workflows/test.yml | 10 +++++----- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index eb9e4be..f17d58b 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -29,7 +29,7 @@ jobs: uses: actions/checkout@v6 - name: Install pnpm - uses: pnpm/action-setup@v4 + uses: pnpm/action-setup@v6 with: version: 10 @@ -57,7 +57,7 @@ jobs: run: pnpm build - name: Upload dist/ as artifact - uses: actions/upload-pages-artifact@v3 + uses: actions/upload-pages-artifact@v5 with: path: dist @@ -81,4 +81,4 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v4 + uses: actions/deploy-pages@v5 diff --git a/.github/workflows/quality.yml b/.github/workflows/quality.yml index 9220611..8cbbea2 100644 --- a/.github/workflows/quality.yml +++ b/.github/workflows/quality.yml @@ -35,7 +35,7 @@ jobs: uses: actions/checkout@v6 - name: Install pnpm - uses: pnpm/action-setup@v4 + uses: pnpm/action-setup@v6 with: version: 10 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 02b1890..7c76aea 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,7 +24,7 @@ jobs: uses: actions/checkout@v6 - name: 📦 Install pnpm - uses: pnpm/action-setup@v4 + uses: pnpm/action-setup@v6 with: version: 10 @@ -62,7 +62,7 @@ jobs: uses: actions/checkout@v6 - name: 📦 Install pnpm - uses: pnpm/action-setup@v4 + uses: pnpm/action-setup@v6 with: version: 10 @@ -114,7 +114,7 @@ jobs: path: coverage/browser/ - name: 📦 Install pnpm - uses: pnpm/action-setup@v4 + uses: pnpm/action-setup@v6 with: version: 10 @@ -125,7 +125,7 @@ jobs: cache: "pnpm" - name: 🎖️ Generating unit test coverage badges - uses: jpb06/coverage-badges-action@v1.4.6 + uses: jpb06/coverage-badges-action@v1.4.10 with: no-commit: true branches: main @@ -135,7 +135,7 @@ jobs: coverage-summary-path: coverage/unit/coverage-summary.json - name: 🎖️ Generating browser test coverage badges - uses: jpb06/coverage-badges-action@v1.4.6 + uses: jpb06/coverage-badges-action@v1.4.10 with: no-commit: true branches: main