Skip to content

build(deps): Bump step-security/harden-runner from 2.8.0 to 2.8.1 #381

build(deps): Bump step-security/harden-runner from 2.8.0 to 2.8.1

build(deps): Bump step-security/harden-runner from 2.8.0 to 2.8.1 #381

Workflow file for this run

name: Java at_client CI
on:
push:
branches:
- trunk
pull_request:
branches:
- trunk
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
test-and-build:
defaults:
run:
working-directory: at_client
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Set up JDK 8 and maven cache
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1
with:
java-version: '8'
distribution: 'adopt'
cache: maven
server-id: ossrh # Value of the distributionManagement/repository/id field of the pom.xml
- name: Build clean and run unit tests
run: mvn --batch-mode clean test -DskipIntegrationTests=true -Dgpg.skip=true
- name: Run integration tests
run: mvn --batch-mode verify -DskipUnitTests=true -Dgpg.skip=true
- name: Generate build outputs
run: mvn --batch-mode install -DskipTests=true --update-snapshots --no-transfer-progress -Dgpg.skip=true