@@ -41,15 +41,15 @@ jobs:
4141 python-version : ' 3.14'
4242 - run : python3 -m pip install --requirement=ci/requirements.txt
4343
44- - uses : actions/cache@v4
44+ - uses : actions/cache@v5
4545 with :
4646 path : ~/.cache/pre-commit
4747 key : pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
4848 restore-keys : " pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}\n pre-commit-"
4949 - run : pre-commit run --all-files --color=always
5050 - run : git diff --exit-code --patch > /tmp/pre-commit.patch; git diff --color; git reset --hard || true
5151 if : failure()
52- - uses : actions/upload-artifact@v5
52+ - uses : actions/upload-artifact@v6
5353 with :
5454 name : Apply pre-commit fix.patch
5555 path : /tmp/pre-commit.patch
@@ -110,7 +110,7 @@ jobs:
110110 - run : make build
111111
112112 - run : make checks
113- - uses : actions/upload-artifact@v5
113+ - uses : actions/upload-artifact@v6
114114 with :
115115 name : Checkstyle and SpotBugs reports
116116 path : reports
@@ -120,13 +120,13 @@ jobs:
120120 - timeout-minutes : 10
121121 run : make tests
122122
123- - uses : actions/upload-artifact@v5
123+ - uses : actions/upload-artifact@v6
124124 with :
125125 name : Unit test results
126126 path : core/build/resources/test/org/mapfish/print/
127127 if-no-files-found : ignore
128128 if : failure()
129- - uses : actions/upload-artifact@v5
129+ - uses : actions/upload-artifact@v6
130130 with :
131131 name : Unit test report
132132 path : core/build/reports/tests/test/
@@ -139,7 +139,7 @@ jobs:
139139 - run : c2cciutils-docker-logs || true
140140 if : always()
141141
142- - uses : actions/upload-artifact@v5
142+ - uses : actions/upload-artifact@v6
143143 with :
144144 name : Acceptance tests (Examples)
145145 path : examples/build/resources/test/examples/
@@ -155,7 +155,7 @@ jobs:
155155 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
156156 - run : git diff --exit-code --patch > /tmp/dpkg-versions.patch; git diff --color; git reset --hard || true
157157 if : failure()
158- - uses : actions/upload-artifact@v5
158+ - uses : actions/upload-artifact@v6
159159 with :
160160 name : Update dpkg versions list.patch
161161 path : /tmp/dpkg-versions.patch
0 commit comments