chore(deps): bump org.springframework.cloud:spring-cloud-starter-bootstrap from 3.1.5 to 4.1.5 in /dpp-backend/digitalproductpass #85
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
################################################################################# | |
# Tractus-X - Digital Product Passport Application | |
# | |
# Copyright (c) 2022, 2024 BMW AG | |
# Copyright (c) 2022, 2024 Henkel AG & Co. KGaA | |
# Copyright (c) 2023, 2024 CGI Deutschland B.V. & Co. KG | |
# Copyright (c) 2023, 2024 Contributors to the Eclipse Foundation | |
# | |
# See the NOTICE file(s) distributed with this work for additional | |
# information regarding copyright ownership. | |
# | |
# This program and the accompanying materials are made available under the | |
# terms of the Apache License, Version 2.0 which is available at | |
# https://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 govern in permissions and limitations | |
# under the License. | |
# | |
# SPDX-License-Identifier: Apache-2.0 | |
################################################################################# | |
name: "Eclipse DASH IP Check" | |
on: | |
workflow_dispatch: # Trigger manually | |
push: | |
branches: main | |
paths-ignore: | |
- '**/*.md' | |
- '**/*.txt' | |
pull_request: | |
branches: main | |
paths: | |
- '**/pom.xml' | |
jobs: | |
check-licenses-backend: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Java 21 | |
uses: ./.github/actions/setup-java | |
- name: Cache maven packages | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2 | |
- name: Build with Maven and check dependencies with dash | |
run: | | |
cd dpp-backend/digitalproductpass | |
mvn --batch-mode --update-snapshots verify -Ddash.fail=true -DskipTests | |
- name: Ensure DEPENDENCIES_BACKEND file is reflecting the current state | |
run: | | |
cd dpp-backend/digitalproductpass | |
mvn org.eclipse.dash:license-tool-plugin:license-check -Ddash.summary=DEPENDENCIES-generated | |
diff ../../DEPENDENCIES_BACKEND DEPENDENCIES-generated | |
- name: upload results | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
path: 'dpp-backend/digitalproductpass/target/dash/summary' | |
check-licences-frontend: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run dash | |
id: run-dash | |
uses: ./.github/actions/run-dash | |
with: | |
dash_input: " dpp-frontend/package-lock.json" | |
- name: upload results | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
path: 'dpp-frontend' |