Skip to content

chore(deps): update github artifact actions (major) #136

chore(deps): update github artifact actions (major)

chore(deps): update github artifact actions (major) #136

Workflow file for this run

# SPDX-FileCopyrightText: Copyright (c) 2016-2026 Objectionary.com
# SPDX-License-Identifier: MIT
---
# yamllint disable rule:line-length
name: mvn-long
'on':
push:
branches:
- master
pull_request:
branches:
- master
jobs:
integration-test:
strategy:
matrix:
os: [ ubuntu-24.04 ]
java: [ 23 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/setup-java@v5
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}
- uses: actions/cache@v5
with:
path: ~/.m2/repository
key: ${{ runner.os }}-jdk-${{ matrix.java }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-jdk-${{ matrix.java }}-maven-
- run: mvn clean install -P"long" --errors --batch-mode
- name: Archive failure logs
uses: actions/upload-artifact@v6
if: failure()
with:
name: build-log-files
path: |
target/