Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/autofix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
timeout-minutes: 10

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Use Node.js lts/*
uses: actions/setup-node@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- uses: actions/setup-node@v6
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
git config --global core.autocrlf false
git config --global core.eol lf

- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Use Node.js 20.x
uses: actions/setup-node@v6
Expand All @@ -45,7 +45,7 @@ jobs:
run: node ./scripts/pack.mjs /tmp/slidev-pkgs

- name: Upload artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: slidev-packages
path: /tmp/slidev-pkgs
Expand All @@ -66,7 +66,7 @@ jobs:
git config --global core.autocrlf false
git config --global core.eol lf

- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Use Node.js 20.x
uses: actions/setup-node@v6
Expand All @@ -83,7 +83,7 @@ jobs:
run: nci

- name: Download artifacts
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
name: slidev-packages
path: /tmp/slidev-pkgs
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
working-directory: ../temp/slidev-project

- name: E2E Smoke Test
uses: cypress-io/github-action@v4
uses: cypress-io/github-action@v7
if: ${{ matrix.os != 'windows-latest' }}
with:
install-command: echo
Expand All @@ -146,7 +146,7 @@ jobs:

# Commented out because it's not working
# - name: E2E test in global mode
# uses: cypress-io/github-action@v4
# uses: cypress-io/github-action@v7
# if: ${{ matrix.os != 'windows' }}
# with:
# project: ${{ github.workspace }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
git config --global core.autocrlf false
git config --global core.eol lf

- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
Expand All @@ -55,7 +55,7 @@ jobs:
timeout-minutes: 20

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- uses: actions/setup-node@v6
with:
Expand All @@ -74,7 +74,7 @@ jobs:
run: cp pnpm-lock.yaml package-lock.json

- name: Cypress
uses: cypress-io/github-action@v6
uses: cypress-io/github-action@v7
with:
install-command: echo
build: nr build
Expand Down
4 changes: 2 additions & 2 deletions docs/.vitepress/themes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -576,15 +576,15 @@ export const community: ThemeInfo[] = [
'https://raw.githubusercontent.com/jxpeng98/slidev-theme-scholarly/HEAD/images/themes/princeton/1.png',
'https://raw.githubusercontent.com/jxpeng98/slidev-theme-scholarly/HEAD/images/themes/classic-blue/2.png',
'https://raw.githubusercontent.com/jxpeng98/slidev-theme-scholarly/HEAD/images/themes/classic-blue/3.png',
'https://raw.githubusercontent.com/jxpeng98/slidev-theme-scholarly/HEAD/images/themes/classic-blue/4.png'
'https://raw.githubusercontent.com/jxpeng98/slidev-theme-scholarly/HEAD/images/themes/classic-blue/4.png',
],
tags: [
'dark',
'light',
'academic',
'oxford',
'cambridge',
'princeton'
'princeton',
],
},
// Add yours here!
Expand Down
Loading