1414 container : ubuntu:${{ matrix.container }}
1515 strategy :
1616 matrix :
17- container : ['22.04', '24.04', '25.04 ']
17+ container : ['22.04', '24.04', '25.10 ']
1818 arch : ['amd64', 'arm64']
1919 env :
2020 DEBIAN_FRONTEND : noninteractive
2424 - name : Install dependencies
2525 run : apt update -qq && apt install --no-install-recommends -y lsb-release build-essential devscripts debhelper lintian pkg-config ${UBUNTU_DEPS} doxygen swig openjdk-17-jdk-headless libpython3-dev python3-setuptools libboost-test-dev
2626 - name : Checkout
27- uses : actions/checkout@v4
27+ uses : actions/checkout@v5
2828 - name : Setup changelog
2929 run : |
3030 export VERSION=$(grep project CMakeLists.txt | egrep -o "([0-9]{1,}\.)+[0-9]{1,}")
3737 - name : Lintian
3838 run : lintian *.deb;
3939 - name : Archive artifacts
40- uses : actions/upload-artifact@v4
40+ uses : actions/upload-artifact@v5
4141 with :
4242 name : ubuntu_${{ matrix.container }}_${{ matrix.arch }}
4343 path : libcdoc*.*
5555 triplet : x64-android
5656 steps :
5757 - name : Checkout
58- uses : actions/checkout@v4
58+ uses : actions/checkout@v5
5959 - name : Expose Android NDK env
6060 shell : bash
6161 run : |
6565 uses : actions/cache@v4
6666 with :
6767 path : ${{ github.workspace }}/vcpkg_cache
68- key : vcpkg-${{ matrix.target }}-${{ hashFiles('.github/workflows/*', ' vcpkg.json', 'CMakeLists.txt', '**/CMakeLists.txt', 'CMakePresets .json') }}
68+ key : vcpkg-${{ matrix.target }}-${{ hashFiles('vcpkg.json') }}
6969 - name : Prepare vcpkg
7070 uses : lukka/run-vcpkg@v11
7171 with :
8080 cmake --build --preset ${{ matrix.target }}
8181 cmake --build --preset ${{ matrix.target }} --target install/strip
8282 - name : Archive artifacts
83- uses : actions/upload-artifact@v4
83+ uses : actions/upload-artifact@v5
8484 with :
8585 name : ${{ matrix.target }}
8686 path : |
@@ -100,7 +100,7 @@ jobs:
100100 DEST : ${{ github.workspace }}/${{ matrix.target }}
101101 steps :
102102 - name : Checkout
103- uses : actions/checkout@v4
103+ uses : actions/checkout@v5
104104 - name : Install dependencies
105105 run : |
106106 brew update
@@ -110,7 +110,7 @@ jobs:
110110 uses : actions/cache@v4
111111 with :
112112 path : ${{ github.workspace }}/vcpkg_cache
113- key : vcpkg-${{ matrix.target }}-${{ hashFiles('.github/workflows/*', ' vcpkg.json', 'CMakeLists.txt', '**/CMakeLists.txt', 'CMakePresets .json') }}
113+ key : vcpkg-${{ matrix.target }}-${{ hashFiles('vcpkg.json') }}
114114 - name : Prepare vcpkg
115115 if : matrix.target != 'macos'
116116 uses : lukka/run-vcpkg@v11
@@ -130,7 +130,7 @@ jobs:
130130 - name : Install
131131 run : cmake --build --preset ${{ matrix.target }} --target install/strip
132132 - name : Archive artifacts
133- uses : actions/upload-artifact@v4
133+ uses : actions/upload-artifact@v5
134134 with :
135135 name : ${{ matrix.target }}
136136 path : ${{ env.DEST }}
@@ -147,12 +147,12 @@ jobs:
147147 VCPKG_DEFAULT_TRIPLET : ${{ matrix.platform }}-windows-static-md
148148 steps :
149149 - name : Checkout
150- uses : actions/checkout@v4
150+ uses : actions/checkout@v5
151151 - name : Cache vcpkg
152152 uses : actions/cache@v4
153153 with :
154154 path : ${{ github.workspace }}/vcpkg_cache
155- key : vcpkg-${{ matrix.image }}-${{ matrix.platform }}-${{ hashFiles('.github/workflows/*', ' vcpkg.json', 'CMakeLists.txt', '**/CMakeLists.txt', 'CMakePresets .json') }}
155+ key : vcpkg-${{ matrix.image }}-${{ matrix.platform }}-${{ hashFiles('vcpkg.json') }}
156156 - name : Prepare vcpkg
157157 uses : lukka/run-vcpkg@v11
158158 with :
@@ -181,7 +181,7 @@ jobs:
181181 ctest -V -C RelWithDebInfo --test-dir build
182182 cmake --install build --config RelWithDebInfo --prefix ${{ env.DEST }}
183183 - name : Archive artifacts
184- uses : actions/upload-artifact@v4
184+ uses : actions/upload-artifact@v5
185185 with :
186186 name : ${{ matrix.image }}_${{ matrix.platform }}
187187 path : ${{ env.DEST }}
@@ -193,7 +193,7 @@ jobs:
193193 contents : write
194194 steps :
195195 - name : Checkout
196- uses : actions/checkout@v4
196+ uses : actions/checkout@v5
197197 - name : Install dependencies
198198 run : sudo apt update -qq && sudo apt install --no-install-recommends -y doxygen ${UBUNTU_DEPS}
199199 - name : Build docs
@@ -215,7 +215,7 @@ jobs:
215215 PROJECTNAME : ${{ github.repository }}
216216 steps :
217217 - name : Checkout
218- uses : actions/checkout@v4
218+ uses : actions/checkout@v5
219219 - name : Install dependencies
220220 run : sudo apt update -qq && sudo apt install --no-install-recommends -y curl ca-certificates ${UBUNTU_DEPS}
221221 - name : Download Coverity Build Tool
@@ -250,7 +250,7 @@ jobs:
250250 security-events : write
251251 steps :
252252 - name : Checkout
253- uses : actions/checkout@v4
253+ uses : actions/checkout@v5
254254 - name : Install dependencies
255255 run : sudo apt update -qq && sudo apt install --no-install-recommends -y ${UBUNTU_DEPS}
256256 - name : Initialize CodeQL
0 commit comments