Skip to content

Commit 039a6bc

Browse files
authored
Merge pull request #244 from rmatthes/githubactionsv4
GitHub action v3 -> v4, Dune language 3.5 -> 3.8, Coq language 0.6 -> 0.8
2 parents d6f8dca + 9f20d94 commit 039a6bc

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build-typetheory.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,29 +20,29 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
coq-version: [dev, latest, 8.16, 8.15]
23+
coq-version: [dev, latest, 8.16]
2424
ocaml-version: [4.14-flambda]
2525
name: Build with ${{ matrix.coq-version }}
2626
runs-on: ubuntu-22.04
2727

2828
steps:
2929
# Checkout UniMath in the current directory.
3030
- name: Checkout UniMath
31-
uses: actions/checkout@v3
31+
uses: actions/checkout@v4
3232
with:
3333
repository: UniMath/UniMath
3434
path: .
3535
clean: false
3636

3737
# Checkout TypeTheory in TypeTheory/
3838
- name: Checkout TypeTheory
39-
uses: actions/checkout@v3
39+
uses: actions/checkout@v4
4040
with:
4141
path: TypeTheory
4242

4343
# Grab the cache if available. We tell dune to use $(pwd)/dune-cache/ in
4444
# the custom_script below.
45-
- uses: actions/cache@v3
45+
- uses: actions/cache@v4
4646
with:
4747
path: dune-cache
4848
key: TypeTheory-coq-${{ matrix.coq-version }}-${{ github.run_id }}-${{ github.run_number }}

dune-project

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
(lang dune 3.5)
2-
(using coq 0.6)
1+
(lang dune 3.8)
2+
(using coq 0.8)
33
(name TypeTheory)

0 commit comments

Comments
 (0)