Skip to content

Commit b9ab6bd

Browse files
committed
Update GitHub actions to Node 24
1 parent 5f35a87 commit b9ab6bd

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/lean_action_ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
name: Build CodeLib proofs
1212
runs-on: macos-latest
1313
steps:
14-
- uses: actions/checkout@v4
15-
- uses: actions/cache@v4
14+
- uses: actions/checkout@v5
15+
- uses: actions/cache@v5
1616
with:
1717
path: .lake/packages
1818
key: lake-pkgs-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('lean-toolchain') }}-${{ hashFiles('interpreter/lake-manifest.json') }}
@@ -28,8 +28,8 @@ jobs:
2828
name: Build program proofs
2929
runs-on: macos-latest
3030
steps:
31-
- uses: actions/checkout@v4
32-
- uses: actions/cache@v4
31+
- uses: actions/checkout@v5
32+
- uses: actions/cache@v5
3333
with:
3434
path: .lake/packages
3535
key: lake-pkgs-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('lean-toolchain') }}-${{ hashFiles('interpreter/lake-manifest.json') }}
@@ -46,8 +46,8 @@ jobs:
4646
runs-on: ubuntu-latest
4747
needs: [codelib, programs]
4848
steps:
49-
- uses: actions/checkout@v4
50-
- uses: actions/cache@v4
49+
- uses: actions/checkout@v5
50+
- uses: actions/cache@v5
5151
with:
5252
path: .lake/packages
5353
key: lake-pkgs-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('lean-toolchain') }}-${{ hashFiles('interpreter/lake-manifest.json') }}

.github/workflows/testsuite-report.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
name: Check testsuite_report.txt is up to date
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
with:
1818
submodules: true
1919

20-
- uses: actions/cache@v4
20+
- uses: actions/cache@v5
2121
with:
2222
path: .lake/packages
2323
key: lake-pkgs-${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('lean-toolchain') }}-${{ hashFiles('interpreter/lake-manifest.json') }}

.github/workflows/verifier-freshness.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Programs up to date
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515

1616
# The verifier executable doesn't need Mathlib (see PR #12), so we
1717
# skip the mathlib cache entirely.

.github/workflows/verifier-report-preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
2828
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131
with:
3232
# `verifier extract` records the repo commit; full history isn't
3333
# needed but a real .git is.

0 commit comments

Comments
 (0)