Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
node-version: [20.x, 22.x]
steps:
- name: Check out repository
uses: actions/checkout@v6
uses: actions/checkout@v4

- name: Bootstrap Node workspace
uses: ./.github/actions/node-bootstrap
Expand All @@ -47,7 +47,7 @@ jobs:
node-version: [20.x, 22.x]
steps:
- name: Check out repository
uses: actions/checkout@v6
uses: actions/checkout@v4

- name: Bootstrap Node workspace
uses: ./.github/actions/node-bootstrap
Expand All @@ -67,7 +67,7 @@ jobs:
node-version: [20.x, 22.x]
steps:
- name: Check out repository
uses: actions/checkout@v6
uses: actions/checkout@v4

- name: Bootstrap Node workspace
uses: ./.github/actions/node-bootstrap
Expand All @@ -91,7 +91,7 @@ jobs:

- name: Upload unit test results
if: always()
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@v4
with:
name: unit-test-results-${{ matrix.os }}-node-${{ matrix.node-version }}
path: test-results/vitest-junit.xml
Expand All @@ -100,7 +100,7 @@ jobs:

- name: Upload coverage reports
if: always()
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@v4
with:
name: coverage-report-${{ matrix.os }}-node-${{ matrix.node-version }}
path: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v4

- name: Initialize CodeQL
uses: github/codeql-action/init@v4
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
config-file: ./.github/codeql/codeql-config.yml
Expand All @@ -42,6 +42,6 @@ jobs:
run: npm run build

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{ matrix.language }}"
2 changes: 1 addition & 1 deletion .github/workflows/deploy-surge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v4

- name: Bootstrap Node workspace
uses: ./.github/actions/node-bootstrap
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
timeout-minutes: 15
steps:
- name: Check out repository
uses: actions/checkout@v6
uses: actions/checkout@v4

- name: Bootstrap Node workspace
uses: ./.github/actions/node-bootstrap
Expand All @@ -34,7 +34,7 @@ jobs:
VITE_GEMINI_API_KEY: ${{ secrets.GEMINI_API_KEY }}

- name: Upload artifact
uses: actions/upload-pages-artifact@v4
uses: actions/upload-pages-artifact@v3
with:
path: dist

Expand All @@ -48,4 +48,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v5
uses: actions/deploy-pages@v4
4 changes: 2 additions & 2 deletions .github/workflows/lighthouse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v6
uses: actions/checkout@v4

- name: Bootstrap Node workspace
uses: ./.github/actions/node-bootstrap
Expand All @@ -37,7 +37,7 @@ jobs:

- name: Upload Lighthouse report artifact
if: always()
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@v4
with:
name: lighthouse-report
path: .lighthouseci
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/nightly-smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
timeout-minutes: 15
steps:
- name: Check out repository
uses: actions/checkout@v6
uses: actions/checkout@v4

- name: Bootstrap Node workspace
uses: ./.github/actions/node-bootstrap
Expand All @@ -39,7 +39,7 @@ jobs:
timeout-minutes: 15
steps:
- name: Check out repository
uses: actions/checkout@v6
uses: actions/checkout@v4

- name: Bootstrap Node workspace
uses: ./.github/actions/node-bootstrap
Expand All @@ -55,7 +55,7 @@ jobs:
timeout-minutes: 15
steps:
- name: Check out repository
uses: actions/checkout@v6
uses: actions/checkout@v4

- name: Bootstrap Node workspace
uses: ./.github/actions/node-bootstrap
Expand All @@ -70,14 +70,14 @@ jobs:

steps:
- name: Check out repository
uses: actions/checkout@v6
uses: actions/checkout@v4

- name: Bootstrap Node workspace
uses: ./.github/actions/node-bootstrap

- name: Cache Playwright browsers
if: ${{ github.event.inputs.run_playwright_smoke == 'true' || vars.RUN_NIGHTLY_PLAYWRIGHT_SMOKE == 'true' }}
uses: actions/cache@v5
uses: actions/cache@v4
with:
path: ~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ hashFiles('**/package-lock.json') }}
Expand All @@ -94,7 +94,7 @@ jobs:

- name: Upload Playwright HTML report
if: ${{ failure() && (github.event.inputs.run_playwright_smoke == 'true' || vars.RUN_NIGHTLY_PLAYWRIGHT_SMOKE == 'true') }}
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@v4
with:
name: nightly-playwright-html-report
path: playwright-report
Expand All @@ -103,7 +103,7 @@ jobs:

- name: Upload Playwright traces
if: ${{ failure() && (github.event.inputs.run_playwright_smoke == 'true' || vars.RUN_NIGHTLY_PLAYWRIGHT_SMOKE == 'true') }}
uses: actions/upload-artifact@v7
uses: actions/upload-artifact@v4
with:
name: nightly-playwright-traces
path: test-results
Expand All @@ -112,7 +112,7 @@ jobs:

- name: Create or update failure issue
if: ${{ failure() && github.event_name != 'pull_request' }}
uses: actions/github-script@v8
uses: actions/github-script@v7
with:
script: |
const title = '🚨 Nightly smoke workflow failed';
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:

- name: Close matching failure issues on success
if: ${{ success() && github.event_name != 'pull_request' }}
uses: actions/github-script@v8
uses: actions/github-script@v7
with:
script: |
const title = '🚨 Nightly smoke workflow failed';
Expand Down
Loading