Skip to content

Commit 98b9bc8

Browse files
authored
chore: bump version to tractusx-edc 0.12.0 (#4)
2 parents 23d4813 + 6c753f1 commit 98b9bc8

181 files changed

Lines changed: 2159 additions & 2502 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/actions/generate-and-check-dependencies/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ runs:
3333
- name: Generate dependency list
3434
shell: bash
3535
run: |
36-
./gradlew allDependencies | grep -Poh "(?<=\s)[\w.-]+:[\w.-]+:[^:\s\[\]]+" | sort | uniq > dependency-list
36+
./gradlew :edc-controlplane:allDependencies --configuration runtimeClasspath | grep -Poh "(?<=\s)[\w.-]+:[\w.-]+:[^:\s\[\]]+" > dependency-list-c
37+
./gradlew :edc-dataplane:allDependencies --configuration runtimeClasspath | grep -Poh "(?<=\s)[\w.-]+:[\w.-]+:[^:\s\[\]]+" > dependency-list-d
38+
cat dependency-list-c dependency-list-d | sort | uniq > dependency-list
3739
cat dependency-list
3840
3941
- name: Run dash

.github/actions/generate-and-publish-allure-report/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ runs:
3535
using: "composite"
3636
steps:
3737
- name: Download Allure results
38-
uses: actions/download-artifact@v7
38+
uses: actions/download-artifact@v8
3939
with:
4040
pattern: ${{ inputs.allure_results }}-*
4141
merge-multiple: true

.github/actions/publish-docker-image/action.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,19 +52,19 @@ runs:
5252
# Enable emulation for cross-arch builds
5353
###############################################
5454
- name: Set up QEMU
55-
uses: docker/setup-qemu-action@v3
55+
uses: docker/setup-qemu-action@v4
5656

5757
###############################################
5858
# Use Docker Buildx (required for multi-arch)
5959
###############################################
6060
- name: Set up Docker Buildx
61-
uses: docker/setup-buildx-action@v3
61+
uses: docker/setup-buildx-action@v4
6262

6363
#####################
6464
# Login to DockerHub
6565
#####################
6666
- name: DockerHub login
67-
uses: docker/login-action@v3
67+
uses: docker/login-action@v4
6868
with:
6969
username: ${{ inputs.docker_user }}
7070
password: ${{ inputs.docker_token }}
@@ -84,7 +84,7 @@ runs:
8484
# Create SemVer or ref tags dependent of trigger event
8585
- name: Docker meta
8686
id: meta
87-
uses: docker/metadata-action@v5
87+
uses: docker/metadata-action@v6
8888
with:
8989
images: |
9090
${{ inputs.namespace }}/${{ inputs.imagename }}
@@ -101,7 +101,7 @@ runs:
101101
# Build and push the image
102102
###############################
103103
- name: Build and push
104-
uses: docker/build-push-action@v6
104+
uses: docker/build-push-action@v7
105105
with:
106106
context: ${{ inputs.rootDir }}
107107
file: ${{ inputs.rootDir }}/build/resources/docker/Dockerfile

.github/actions/run-deployment-test/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#################################################################################
22
# Copyright (c) 2023 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
33
# Copyright (c) 2023 Contributors to the Eclipse Foundation
4+
# Copyright (c) 2026 Cofinity-X GmbH
45
#
56
# See the NOTICE file(s) distributed with this work for additional
67
# information regarding copyright ownership.
@@ -43,7 +44,7 @@ inputs:
4344
k8sversion:
4445
required: false
4546
description: "Version of Kubernetes to use"
46-
default: "v1.30.0"
47+
default: "v1.34.3"
4748

4849
runs:
4950
using: "composite"
@@ -55,10 +56,9 @@ runs:
5556
- uses: ./.github/actions/setup-kubectl
5657

5758
- name: Create k8s Kind Cluster
58-
uses: helm/kind-action@v1.13.0
59+
uses: helm/kind-action@v1.14.0
5960
with:
6061
node_image: kindest/node:${{ inputs.k8sversion }}
61-
version: v0.29.0
6262

6363
- name: Build docker images
6464
shell: bash

.github/actions/update-version-and-charts/action.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,18 +42,15 @@ runs:
4242
fi
4343
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
4444
- name: Bump version in /charts
45-
uses: mikefarah/yq@v4.52.2
45+
uses: mikefarah/yq@v4.52.4
4646
with:
4747
cmd: |
4848
find charts -name Chart.yaml -maxdepth 3 | xargs -n1 yq -i '.appVersion = "${{ steps.resolver.outputs.version }}"
4949
| .version = "${{ steps.resolver.outputs.version }}"'
5050
- name: Update Chart READMEs
51-
uses: addnab/docker-run-action@v3
52-
with:
53-
image: jnorwood/helm-docs:v1.10.0
54-
options: -v ${{ github.workspace }}/charts:/helm-docs
55-
run: |
56-
helm-docs --log-level debug
51+
shell: bash
52+
run: |
53+
docker run -v ${{ github.workspace }}/charts:/helm-docs jnorwood/helm-docs helm-docs
5754
- name: Update version in gradle.properties
5855
shell: bash
5956
run: |-

.github/dependabot.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ updates:
3333
- "dependencies"
3434
schedule:
3535
interval: "weekly"
36+
open-pull-requests-limit: 50
3637
ignore:
3738
- dependency-name: "org.eclipse.dataspacetck.dsp:*"
3839
- dependency-name: "org.eclipse.dataspacetck.dcp:*"
@@ -49,6 +50,7 @@ updates:
4950
- "github-actions"
5051
schedule:
5152
interval: "weekly"
53+
open-pull-requests-limit: 50
5254

5355
# Docker
5456
- package-ecosystem: "docker"
@@ -62,3 +64,4 @@ updates:
6264
- "docker"
6365
schedule:
6466
interval: "weekly"
67+
open-pull-requests-limit: 50

.github/workflows/codeql.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,6 @@ jobs:
7676
- name: Build Production Code
7777
run: |
7878
./gradlew compileJava --no-daemon --no-build-cache
79-
env:
80-
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_API_TOKEN }}
8179
8280
- name: Perform CodeQL Analysis
8381
uses: github/codeql-action/analyze@v4

.github/workflows/deployment-test.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#################################################################################
22
# Copyright (c) 2023 Mercedes-Benz Tech Innovation GmbH
33
# Copyright (c) 2021,2023 Contributors to the Eclipse Foundation
4+
# Copyright (c) 2026 Cofinity-X GmbH
45
#
56
# See the NOTICE file(s) distributed with this work for additional
67
# information regarding copyright ownership.
@@ -65,9 +66,9 @@ jobs:
6566
fail-fast: false
6667
# this will verify that the official distribution of the Tractus-X EDC Helm chart runs on the last 3 Kubernetes versions
6768
matrix:
68-
k8s-version: [ "v1.33.1",
69-
"v1.32.5",
70-
"v1.31.9" ]
69+
k8s-version: [ "v1.35.1",
70+
"v1.34.3",
71+
"v1.33.7" ]
7172
steps:
7273
- name: Checkout
7374
uses: actions/checkout@v6

.github/workflows/kics.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- uses: actions/checkout@v6
4545

4646
- name: KICS scan
47-
uses: checkmarx/kics-github-action@v2.1.19
47+
uses: checkmarx/kics-github-action@v2.1.20
4848
with:
4949
path: "."
5050
fail_on: high

.github/workflows/publish-openapi-ui.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,7 @@ jobs:
5555

5656
- name: Generate openapi spec
5757
run: ./gradlew resolve
58-
env:
59-
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_API_TOKEN }}
60-
- uses: actions/upload-artifact@v6
58+
- uses: actions/upload-artifact@v7
6159
with:
6260
name: openapi-spec
6361
path: resources/openapi/yaml
@@ -74,7 +72,7 @@ jobs:
7472
steps:
7573
- uses: actions/checkout@v6
7674
- uses: eclipse-edc/.github/.github/actions/setup-build@main
77-
- uses: actions/download-artifact@v7
75+
- uses: actions/download-artifact@v8
7876
with:
7977
name: openapi-spec
8078
path: resources/openapi/yaml
@@ -93,14 +91,10 @@ jobs:
9391
run: |
9492
./gradlew -p ${{ matrix.apiGroup.folder }} downloadOpenapi
9593
cp ${{ matrix.apiGroup.folder }}/build/docs/openapi/* resources/openapi/yaml/${{ matrix.apiGroup.name }}
96-
env:
97-
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_API_TOKEN }}
9894
9995
- name: Merge API specs
10096
run: |
10197
./gradlew mergeOpenApiSpec --inputDir=${PWD}/resources/openapi/yaml/${{ matrix.apiGroup.name }} --output=${{ matrix.apiGroup.name }}.yaml --infoTitle="Tractus-X EDC ${{ matrix.apiGroup.name }} API" --infoDescription="Tractus-X EDC ${{ matrix.apiGroup.name }} API Documentation" --infoVersion=${{ env.VERSION }}
102-
env:
103-
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_API_TOKEN }}
10498
10599
- name: Generate Swagger UI current version
106100
uses: Legion2/swagger-ui-action@v1
@@ -117,7 +111,7 @@ jobs:
117111
spec-file: ${{ matrix.apiGroup.name }}.yaml
118112
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
119113

120-
- uses: actions/upload-artifact@v6
114+
- uses: actions/upload-artifact@v7
121115
with:
122116
name: ${{ matrix.apiGroup.name }}-api
123117
path: dist
@@ -128,7 +122,7 @@ jobs:
128122
permissions:
129123
contents: write
130124
steps:
131-
- uses: actions/download-artifact@v7
125+
- uses: actions/download-artifact@v8
132126
with:
133127
path: openapi
134128
pattern: "*-api"

0 commit comments

Comments
 (0)