Skip to content

Commit a0c4bdc

Browse files
authored
Merge pull request #219 from drcgjung/feature/upgrade-edc-0.7.3
feature: upgrade to tx-edc 0.7.3 (upstream edc 0.7.1)
2 parents c4cffde + 4529450 commit a0c4bdc

File tree

48 files changed

+1195
-931
lines changed

Some content is hidden

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

48 files changed

+1195
-931
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ jobs:
130130
# Create SemVer or ref tags dependent of trigger event
131131
- name: Docker Meta Agent Plane Hashicorp
132132
id: meta-hash
133-
uses: docker/metadata-action@dbef88086f6cef02e264edb7dbf63250c17cef6c # v5.5.0
133+
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5.5.1
134134
with:
135135
images: |
136136
${{ steps.set-docker-repo.outputs.REPO }}/agentplane-hashicorp
@@ -142,7 +142,7 @@ jobs:
142142
type=semver,pattern={{version}}
143143
type=semver,pattern={{major}}
144144
type=semver,pattern={{major}}.{{minor}}
145-
type=raw,value=1.13.20-SNAPSHOT,enable=${{ github.event.inputs.deploy_docker == 'true' || github.ref == format('refs/heads/{0}', 'main') }}
145+
type=raw,value=1.13.21-SNAPSHOT,enable=${{ github.event.inputs.deploy_docker == 'true' || github.ref == format('refs/heads/{0}', 'main') }}
146146
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', 'main') }}
147147
148148
- name: Agent Plane Hashicorp Container Build and push
@@ -158,7 +158,7 @@ jobs:
158158
# Important step to push image description to DockerHub - since this is version independent, we always take it from main
159159
- name: Update Docker Hub description for Agent Plane Hashicorp
160160
if: ${{ steps.set-docker-repo.outputs.REPO == 'docker.io' && github.ref == 'refs/heads/main' }}
161-
uses: peter-evans/dockerhub-description@dc67fad7001ef9e8e3c124cb7a64e16d0a63d864 # v3.4.2
161+
uses: peter-evans/dockerhub-description@e98e4d1628a5f3be2be7c231e50981aee98723ae # v4.0.0
162162
with:
163163
readme-filepath: agent-plane/agentplane-hashicorp/README.md
164164
username: ${{ secrets.DOCKER_HUB_USER }}
@@ -168,7 +168,7 @@ jobs:
168168
# Create SemVer or ref tags dependent of trigger event
169169
- name: Docker Meta Agent Plane Azure Vault
170170
id: meta-azr
171-
uses: docker/metadata-action@dbef88086f6cef02e264edb7dbf63250c17cef6c # v5.5.0
171+
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5.5.1
172172
with:
173173
images: |
174174
${{ steps.set-docker-repo.outputs.REPO }}/agentplane-azure-vault
@@ -180,7 +180,7 @@ jobs:
180180
type=semver,pattern={{version}}
181181
type=semver,pattern={{major}}
182182
type=semver,pattern={{major}}.{{minor}}
183-
type=raw,value=1.13.20-SNAPSHOT,enable=${{ github.event.inputs.deploy_docker == 'true' || github.ref == format('refs/heads/{0}', 'main') }}
183+
type=raw,value=1.13.21-SNAPSHOT,enable=${{ github.event.inputs.deploy_docker == 'true' || github.ref == format('refs/heads/{0}', 'main') }}
184184
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', 'main') }}
185185
186186
- name: Agent Plane Azure Vault Container Build and push
@@ -196,7 +196,7 @@ jobs:
196196
# Important step to push image description to DockerHub - since this is version independent, we always take it from main
197197
- name: Update Docker Hub description for Agent Plane Azure Vault
198198
if: ${{ steps.set-docker-repo.outputs.REPO == 'docker.io' && github.ref == 'refs/heads/main' }}
199-
uses: peter-evans/dockerhub-description@dc67fad7001ef9e8e3c124cb7a64e16d0a63d864 # v3.4.2
199+
uses: peter-evans/dockerhub-description@e98e4d1628a5f3be2be7c231e50981aee98723ae # v4.0.0
200200
with:
201201
readme-filepath: agent-plane/agentplane-azure-vault/README.md
202202
username: ${{ secrets.DOCKER_HUB_USER || github.actor }}

.github/workflows/helm-chart-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
cache: 'maven'
7878

7979
# Set-Up Python
80-
- uses: actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1
80+
- uses: actions/setup-python@82c7e631bb3cdc910f68e0081d67478d79c6982d # v5.1.0
8181
with:
8282
python-version: 3.9
8383

.github/workflows/trivy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
steps:
5656
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
5757
- name: Run Trivy vulnerability scanner in repo mode
58-
uses: aquasecurity/trivy-action@d43c1f16c00cfd3978dde6c07f4bbcf9eb6993ca # v0.16.1
58+
uses: aquasecurity/trivy-action@6e7b7d1fd3e4fef0c5fa8cce1229c54b2c9bd0d8 # v0.24.0
5959
with:
6060
scan-type: "config"
6161
# ignore-unfixed: true
@@ -65,7 +65,7 @@ jobs:
6565
output: "trivy-results-config.sarif"
6666
severity: "CRITICAL,HIGH"
6767
- name: Upload Trivy scan results to GitHub Security tab
68-
uses: github/codeql-action/upload-sarif@e5f05b81d5b6ff8cfa111c80c22c5fd02a384118 # v3.23.0
68+
uses: github/codeql-action/upload-sarif@b611370bb5703a7efb587f9d136a52ea24c5c38c # v3.25.11
6969
if: always()
7070
with:
7171
sarif_file: "trivy-results-config.sarif"
@@ -121,7 +121,7 @@ jobs:
121121
# the next two steps will only execute if the image exists check was successful
122122
- name: Run Trivy vulnerability scanner
123123
if: success() && steps.imageCheck.outcome != 'failure'
124-
uses: aquasecurity/trivy-action@d43c1f16c00cfd3978dde6c07f4bbcf9eb6993ca # v0.16.1
124+
uses: aquasecurity/trivy-action@6e7b7d1fd3e4fef0c5fa8cce1229c54b2c9bd0d8 # v0.24.0
125125
with:
126126
image-ref: "${{ steps.set-docker-repo.outputs.REPO }}/${{ matrix.image }}:${{ needs.git-sha7.outputs.value }}"
127127
format: "sarif"
@@ -132,6 +132,6 @@ jobs:
132132

133133
- name: Upload Trivy scan results to GitHub Security tab
134134
if: success() && steps.imageCheck.outcome != 'failure'
135-
uses: github/codeql-action/upload-sarif@689fdc5193eeb735ecb2e52e819e3382876f93f4 # v2.22.6
135+
uses: github/codeql-action/upload-sarif@b611370bb5703a7efb587f9d136a52ea24c5c38c # v3.25.11
136136
with:
137137
sarif_file: "trivy-results-${{ matrix.image }}.sarif"

.github/workflows/veracode.yml

Lines changed: 0 additions & 100 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
* Copyright (c) 2022,2023 Contributors to the Eclipse Foundation
2+
* Copyright (c) 2022,2024 Contributors to the Eclipse Foundation
33
*
44
* See the NOTICE file(s) distributed with this work for additional
55
* information regarding copyright ownership.
@@ -24,6 +24,14 @@ All notable changes to this product will be documented in this file.
2424

2525
# Released
2626

27+
## [1.13.21] - 2024-07-15
28+
29+
### Added
30+
31+
### Changed
32+
33+
- Adapted to Tractus-X EDC 0.7.3
34+
2735
## [1.12.19] - 2024-05-17
2836

2937
### Added

0 commit comments

Comments
 (0)