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
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v7
- name: Set up Lean and restore Mathlib cache
uses: leanprover/lean-action@v1
with:
Expand All @@ -28,7 +28,7 @@ jobs:
use-mathlib-cache: true
use-github-cache: false
- name: Restore project build cache
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: .lake/build
key: probability-approximation-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('lean-toolchain', 'lake-manifest.json') }}-${{ github.sha }}
Expand All @@ -44,7 +44,7 @@ jobs:
working-directory: blueprint-verso
run: lake exe cache get
- name: Restore Blueprint dependency build cache
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: |
.lake/packages/Cli/.lake/build
Expand All @@ -64,7 +64,7 @@ jobs:
.lake/packages/verso-slides/.lake/build
key: probability-blueprint-deps-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('blueprint-verso/lean-toolchain', 'blueprint-verso/lake-manifest.json') }}
- name: Restore Blueprint project build cache
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: blueprint-verso/.lake/build
key: probability-blueprint-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('blueprint-verso/lean-toolchain', 'blueprint-verso/lake-manifest.json', 'lake-manifest.json') }}-${{ github.sha }}
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
run: ./scripts/site.sh build release
- name: Upload Pages artifact
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v5
with:
path: blueprint-verso/_out/site/html-multi

Expand All @@ -126,4 +126,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v5
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
tag: ${{ steps.version.outputs.tag }}

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v7
with:
ref: ${{ inputs.tag || github.ref_name }}

Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
runs-on: ${{ matrix.runner }}

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v7
with:
ref: ${{ needs.prepare.outputs.tag }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-mathlib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down