Skip to content
Open
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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
steps:
- name: Restore Pandoc cache
id: cache-pandoc
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: /home/runner/pandoc
key: ${{ runner.os }}-pandoc-${{ env.PANDOC_VERSION }}
Expand All @@ -41,7 +41,7 @@ jobs:
steps:
- name: Restore Vercel CLI cache
id: cache-vercel
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: /home/runner/npm-global-vercel
key: ${{ runner.os }}-vercel-${{ env.VERCEL_VERSION }}
Expand All @@ -58,10 +58,10 @@ jobs:
needs: [install-pandoc]
steps:
- name: Checkout code (shallow)
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Restore Pandoc cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: /home/runner/pandoc
key: ${{ runner.os }}-pandoc-${{ env.PANDOC_VERSION }}
Expand All @@ -84,15 +84,15 @@ jobs:
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout code (for vercel.json and static assets)
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Download HTML artifact
uses: actions/download-artifact@v8
with:
name: generated-html

- name: Restore Vercel CLI cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: /home/runner/npm-global-vercel
key: ${{ runner.os }}-vercel-${{ env.VERCEL_VERSION }}
Expand Down
Loading