Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ jobs:
python-version: '3.14'
- run: python3 -m pip install --requirement=ci/requirements.txt

- uses: actions/cache@v4
- uses: actions/cache@v5
with:
path: ~/.cache/pre-commit
key: pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}
restore-keys: "pre-commit-${{ hashFiles('.pre-commit-config.yaml') }}\npre-commit-"
- run: pre-commit run --all-files --color=always
- run: git diff --exit-code --patch > /tmp/pre-commit.patch; git diff --color; git reset --hard || true
if: failure()
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: Apply pre-commit fix.patch
path: /tmp/pre-commit.patch
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
- run: make build

- run: make checks
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: Checkstyle and SpotBugs reports
path: reports
Expand All @@ -120,13 +120,13 @@ jobs:
- timeout-minutes: 10
run: make tests

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: Unit test results
path: core/build/resources/test/org/mapfish/print/
if-no-files-found: ignore
if: failure()
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: Unit test report
path: core/build/reports/tests/test/
Expand All @@ -139,7 +139,7 @@ jobs:
- run: c2cciutils-docker-logs || true
if: always()

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: Acceptance tests (Examples)
path: examples/build/resources/test/examples/
Expand All @@ -155,7 +155,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: git diff --exit-code --patch > /tmp/dpkg-versions.patch; git diff --color; git reset --hard || true
if: failure()
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: Update dpkg versions list.patch
path: /tmp/dpkg-versions.patch
Expand Down
Loading