Skip to content

Bump ch.qos.logback:logback-classic from 1.6.0 to 1.6.1 (#76) #305

Bump ch.qos.logback:logback-classic from 1.6.0 to 1.6.1 (#76)

Bump ch.qos.logback:logback-classic from 1.6.0 to 1.6.1 (#76) #305

Workflow file for this run

name: cta4j Java SDK - Build & Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build & Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v7
- name: Set up JDK
uses: actions/setup-java@v5.6.0
with:
distribution: 'corretto'
java-version: '25'
cache: 'maven'
- name: Read project version from pom.xml
id: ver
run: |
VERSION=$(mvn -q -Dexec.executable=echo -Dexec.args='${project.version}' --non-recursive org.codehaus.mojo:exec-maven-plugin:3.5.0:exec)
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
- name: Build with Maven
run: mvn -B -Dgpg.skip=true clean verify