File tree 1 file changed +8
-8
lines changed
1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 6
6
7
7
jobs :
8
8
build :
9
- runs-on : ubuntu-20 .04
9
+ runs-on : ubuntu-22 .04
10
10
steps :
11
- - uses : actions/checkout@v3
11
+ - uses : actions/checkout@v4
12
12
- name : Install dependencies
13
13
run : |
14
- sudo apt-get install -y --no-install-recommends libboost-dev libboost-program-options-dev
14
+ sudo apt-get install -y --no-install-recommends clang-format-11 libboost-dev libboost-program-options-dev
15
15
- name : Check code style
16
16
run : |
17
17
make lint
@@ -22,27 +22,27 @@ jobs:
22
22
sudo make install
23
23
sudo make uninstall
24
24
debian :
25
- runs-on : ubuntu-20 .04
26
- container : debian:bullseye
25
+ runs-on : ubuntu-22 .04
26
+ container : debian:bookworm
27
27
steps :
28
28
- name : Install tools
29
29
run : |
30
30
apt-get update
31
31
apt-get install -qq --no-install-recommends devscripts equivs gawk git
32
- - uses : actions/checkout@v3
32
+ - uses : actions/checkout@v4
33
33
- name : Install dependencies
34
34
run : |
35
35
mk-build-deps -ir -t "apt-get -qq --no-install-recommends"
36
36
- name : Prepare changelog
37
37
run : |
38
38
debian/nightly-changelog.sh
39
39
env :
40
- DISTRO : bullseye
40
+ DISTRO : bookworm
41
41
- name : Build package
42
42
run : |
43
43
debuild -us -uc
44
44
mv ../*.deb ~/
45
- - uses : actions/upload-artifact@v3
45
+ - uses : actions/upload-artifact@v4
46
46
with :
47
47
name : deb
48
48
path : ~/*.deb
You can’t perform that action at this time.
0 commit comments