Skip to content

Bump org.apache.maven.plugins:maven-assembly-plugin from 3.6.0 to 3.7.1 #6253

Bump org.apache.maven.plugins:maven-assembly-plugin from 3.6.0 to 3.7.1

Bump org.apache.maven.plugins:maven-assembly-plugin from 3.6.0 to 3.7.1 #6253

Workflow file for this run

#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
name: Validate PR Style
on:
pull_request:
branches:
- main
- camel-main
- quarkus-main
- "[0-9]+.[0-9]+.x"
paths-ignore:
- '**.adoc'
- '**.md'
- 'Jenkinsfile'
- 'Jenkinsfile.*'
- 'KEYS'
- 'LICENSE.txt'
- 'NOTICE.txt'
- '.github/*.sh'
- '.github/*.yaml'
- '.github/*.yml'
- '.github/workflows/assign-issue-milestone.yaml'
- '.github/workflows/assign-wontfix-issue-milestone.yaml'
- '.github/workflows/camel-master-cron.yaml'
- '.github/workflows/generate-sbom-main.yml'
- '.github/workflows/label-issue.yaml'
- '.github/workflows/pr-validate.yml'
- '.github/workflows/quarkus-master-cron.yaml'
- '.github/workflows/synchronize-dependabot-branch.yaml'
- 'docs/antora.yml'
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
env:
LANG: en_US
MAVEN_OPTS: -Xmx3500m
CQ_MAVEN_ARGS: -V -ntp -e -Daether.connector.http.connectionMaxTtl=120
permissions: # added using https://github.com/step-security/secure-repo
contents: read
jobs:
check-format:
if: github.repository == 'apache/camel-quarkus'
runs-on: ubuntu-latest
steps:
- name: Setup apache-snapshots profile
if: github.base_ref == 'camel-main'
run: |
echo "BRANCH_OPTIONS=-Papache-snapshots" >> $GITHUB_ENV
- name: Setup oss-snapshots profile
if: github.base_ref == 'quarkus-main'
run: |
echo "BRANCH_OPTIONS=-Poss-snapshots" >> $GITHUB_ENV
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Set up JDK 17
uses: actions/setup-java@2dfa2011c5b2a0f1489bf9e433881c92c1631f88 # v4.3.0
with:
distribution: 'temurin'
java-version: '17'
- name: mvn validate
run: |
./mvnw ${CQ_MAVEN_ARGS} ${BRANCH_OPTIONS} -fae \
-DskipTests \
-Pcheck-format \
clean validate