Skip to content

Bump github/codeql-action from 3.25.1 to 3.25.3 (#3105) #199

Bump github/codeql-action from 3.25.1 to 3.25.3 (#3105)

Bump github/codeql-action from 3.25.1 to 3.25.3 (#3105) #199

Workflow file for this run

name: license-check
on:
push:
pull_request:
permissions: # added using https://github.com/step-security/secure-repo
contents: read
env:
MAVEN_CLI_OPTS: -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false --batch-mode
MAVEN_TEST_OPTS: -Dtest.fork.count=1
jobs:
check-headers:
runs-on: ubuntu-latest
# avoid duplicate jobs on PRs from the main repo
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
steps:
- uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3
- uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1
with:
distribution: 'temurin'
java-version: '11'
cache: 'maven'
- name: Run license check
run: mvn license:check $MAVEN_CLI_OPTS