File tree Expand file tree Collapse file tree 1 file changed +12
-11
lines changed Expand file tree Collapse file tree 1 file changed +12
-11
lines changed Original file line number Diff line number Diff line change 12
12
jobs :
13
13
create-sample-problems :
14
14
# The type of runner that the job will run on
15
- runs-on : ubuntu-22 .04
15
+ runs-on : ubuntu-24 .04
16
16
17
17
# Steps represent a sequence of tasks that will be executed as part of the job
18
18
steps :
19
+ - name : Install Ubuntu dependencies
20
+ run : |
21
+ sudo apt-get update
22
+ sudo apt-get install -y --no-install-recommends --no-install-suggests \
23
+ cpanminus \
24
+ pandoc \
25
+ libmojolicious-perl \
26
+ libyaml-libyaml-perl \
27
+ libpandoc-wrapper-perl
19
28
- name : Checkout pg-docs code
20
29
uses : actions/checkout@v4
21
30
with :
@@ -24,19 +33,11 @@ jobs:
24
33
- name : Checkout PG code
25
34
uses : actions/checkout@v4
26
35
with :
27
- repository : pstaabp /pg
36
+ repository : openwebwork /pg
28
37
ref : PG-2.20
29
38
path : pg
30
39
persist-credentials : false
31
- - name : Install Ubuntu dependencies
32
- run : |
33
- sudo apt-get update
34
- sudo apt-get install -y --no-install-recommends --no-install-suggests \
35
- cpanminus \
36
- pandoc \
37
- libmojolicious-perl \
38
- libyaml-libyaml-perl \
39
- libpandoc-wrapper-perl
40
+
40
41
41
42
# Runs a set of commands using the runners shell
42
43
- name : parse sample problems
You can’t perform that action at this time.
0 commit comments