build: adjust maintenance docker image (#1005) #9
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
############################################################### | |
# Copyright (c) 2023 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 governing permissions and limitations | |
# under the License. | |
# | |
# SPDX-License-Identifier: Apache-2.0 | |
############################################################### | |
name: Check Dependencies | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
types: [opened, synchronize, reopened] | |
workflow_dispatch: | |
jobs: | |
check-dependencies: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# change to preview .NET 9 until fix for https://github.com/NuGet/Home/issues/12954 gets released for .NET 8 | |
dotnet-version: ['9.0'] | |
steps: | |
- name: Set up JDK 17 | |
uses: actions/setup-java@6a0805fcefea3d4657a47ac4c165951e33482018 # v4.2.2 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }} | |
uses: actions/setup-dotnet@6bd8b7f7774af54e05809fcc5431931b3eb1ddee # v4.0.1 | |
with: | |
dotnet-version: ${{ matrix.dotnet-version }} | |
# change to preview .NET 9 until fix for https://github.com/NuGet/Home/issues/12954 gets released for .NET 8 | |
dotnet-quality: 'preview' | |
- name: Checkout repository | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Install dependencies | |
run: dotnet restore src | |
- name: List packages | |
run: dotnet list src package --include-transitive --interactive | grep ">" | grep -Pv "\s(Org|Microsoft|NuGet|System|runtime|docker|Docker|NETStandard)" | sed -E -e "s/\s+> ([a-zA-Z\.\-]+).+\s([0-9]+\.[0-9]+\.[0-9]+)\s*/nuget\/nuget\/\-\/\1\/\2/g" | awk '!seen[$0]++' > PACKAGES | |
- name: Generate Dependencies file | |
run: java -jar ./scripts/download/org.eclipse.dash.licenses-1.1.1.jar PACKAGES -project automotive.tractusx -summary DEPENDENCIES || true | |
- name: Check if dependencies were changed | |
id: dependencies-changed | |
run: | | |
changed=$(git diff DEPENDENCIES) | |
if [[ -n "$changed" ]]; then | |
echo "dependencies changed" | |
echo "changed=true" >> $GITHUB_OUTPUT | |
else | |
echo "dependencies not changed" | |
echo "changed=false" >> $GITHUB_OUTPUT | |
fi | |
- name: Check for restricted dependencies | |
run: | | |
restricted=$(grep ' restricted,' DEPENDENCIES || true) | |
if [[ -n "$restricted" ]]; then | |
echo "The following dependencies are restricted: $restricted" | |
exit 1 | |
fi | |
if: steps.dependencies-changed.outputs.changed == 'true' | |
- name: Upload DEPENDENCIES file | |
uses: actions/upload-artifact@89ef406dd8d7e03cfd12d9e0a4a378f454709029 # v4.3.5 | |
with: | |
path: DEPENDENCIES | |
if: steps.dependencies-changed.outputs.changed == 'true' | |
- name: Signal need to update DEPENDENCIES | |
run: | | |
echo "Dependencies need to be updated (updated DEPENDENCIES file has been uploaded to workflow run)" | |
exit 1 | |
if: steps.dependencies-changed.outputs.changed == 'true' |