Skip to content

Commit c44b4f8

Browse files
committed
test new ci script
1 parent 35d2919 commit c44b4f8

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/ci-ubuntu.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ on:
4242
########################################################################
4343

4444
env:
45-
AGDA_BRANCH: v2.6.4.1
46-
GHC_VERSION: 9.4.7
47-
CABAL_VERSION: 3.6.2.0
45+
AGDA_BRANCH: v2.7.0.1
46+
GHC_VERSION: 9.10.2
47+
CABAL_VERSION: 3.12.1.0
4848
CABAL_INSTALL: cabal install --overwrite-policy=always --ghc-options='-O1 +RTS -M6G -RTS'
4949
CACHE_PATHS: |
5050
~/.cabal/packages
@@ -67,7 +67,7 @@ jobs:
6767
# absolutely necessary i.e. if we change either the version of Agda,
6868
# ghc, or cabal that we want to use for the build.
6969
- name: Restore external dependencies cache
70-
uses: actions/cache/restore@v3
70+
uses: actions/cache/restore@v4
7171
id: cache-external-restore
7272
with:
7373
path: ${{ env.CACHE_PATHS }}
@@ -98,7 +98,7 @@ jobs:
9898
9999
- name: Save external dependencies cache
100100
if: steps.cache-external-restore.outputs.cache-hit != 'true'
101-
uses: actions/cache/save@v3
101+
uses: actions/cache/save@v4
102102
id: cache-external-save
103103
with:
104104
path: ${{ env.CACHE_PATHS }}
@@ -110,14 +110,14 @@ jobs:
110110

111111
# By default github actions do not pull the repo
112112
- name: Checkout cubical
113-
uses: actions/checkout@v3
113+
uses: actions/checkout@v4
114114

115115
########################################################################
116116
## TESTING
117117
########################################################################
118118

119119
- name: Restore library cache
120-
uses: actions/cache/restore@v3
120+
uses: actions/cache/restore@v4
121121
id: cache-library-restore
122122
with:
123123
path: ./_build
@@ -137,7 +137,7 @@ jobs:
137137
138138
- name: Save library cache
139139
if: steps.cache-library-restore.outputs.cache-hit != 'true'
140-
uses: actions/cache/save@v3
140+
uses: actions/cache/save@v4
141141
id: cache-library-save
142142
with:
143143
path: ./_build
@@ -157,7 +157,7 @@ jobs:
157157
158158
- name: Deploy to GitHub Pages
159159
if: github.event_name == 'push' && github.ref_name == 'master'
160-
uses: JamesIves/github-pages-deploy-action@4.1.8
160+
uses: JamesIves/github-pages-deploy-action@4.7.3
161161
with:
162162
branch: gh-pages
163163
folder: html

0 commit comments

Comments
 (0)