Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
da56f4e
Add dependency-review (#3)
mm-psy Dec 18, 2025
4739f08
Add Scorecard supply-chain security (#2)
mm-psy Dec 18, 2025
d809ee7
Create docker-publish.yml (#7)
mm-psy Dec 19, 2025
bea4743
Create dotnet (#6)
mm-psy Dec 19, 2025
a166826
Enhance Submodel Element request handling(#8)
mm-kgi Jan 6, 2026
0ca152b
Add dependabot-version-updates (#4)
mm-psy Jan 12, 2026
e4fe5a6
Enhancement of DataEngine Implementation (#12)
mm-kgi Jan 15, 2026
cf19f13
Added example folder With Dpp-plugin (#13)
mm-hsh Jan 16, 2026
69c50aa
Restructure Dockerfile for improved build process and clarity (#14)
mm-psy Jan 17, 2026
328dd9c
Added Test Plugin and Example for 3 submodels using Test plugin (#11)
mm-kgi Jan 19, 2026
6d9284a
#182: Test plugin review results (#17)
HolgerSantelmann Jan 21, 2026
d27c181
Add codeql (#5)
mm-psy Jan 21, 2026
adad264
Enhancement of DataEngine Implementation (#18)
mm-hsh Jan 22, 2026
46acc89
Add hotfix develop release branches to actions (#15)
mm-psy Jan 22, 2026
2b973bd
#257: Enhancement TestPlugin to verify access SubmodelElement inside …
HolgerSantelmann Jan 22, 2026
01d0222
README.md with detailed DataEngine overview and feature descriptions …
mm-kgi Jan 23, 2026
35e0d20
Refactor SyncShellDescriptorsAsync to log errors and return instead o…
mm-kgi Jan 23, 2026
c4b9591
Generate SBOM for Container & application (#23)
rkg-mm Jan 26, 2026
71ba1a8
Add groups dependabot (#24)
mm-psy Jan 26, 2026
b9eae85
Enhance example-Docker setup (#16)
mm-hsh Jan 27, 2026
ebeaef1
Add manual trigger capability to .NET pipeline (#21)
mm-psy Jan 27, 2026
4839155
Merge main branch and resolved the security issue (#27)
mm-kgi Jan 27, 2026
8112659
Dev fix trivy (#22)
mm-psy Jan 27, 2026
049a654
Dev fix trivy + tag rework (#23)
mm-psy Jan 29, 2026
5fa07e6
Psy test playwright (#35)
mm-psy Feb 10, 2026
d85b350
Merge branch 'main' into develop
mm-psy Feb 10, 2026
b7d1a27
Bump the major-minor-patch group across 1 directory with 7 updates (#39)
dependabot[bot] Feb 17, 2026
fefad0f
Merge branch 'main' into develop
mm-psy Feb 17, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
steps:
- name: Checkout repository
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

# Add any setup steps before running the `github/codeql-action/init` action.
# This includes steps like installing compilers or runtimes (`actions/setup-node`
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Checkout repository'
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: 'Dependency Review'
uses: actions/dependency-review-action@3c4e3dcb1aa7874d2c16be7d79418e9b7efd6261 # v4.8.2
# Commonly enabled options, see https://github.com/actions/dependency-review-action#configuration-options for all available options.
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,19 +42,19 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

# Set up BuildKit Docker container builder to be able to build
# multi-platform images and export cache
# https://github.com/docker/setup-buildx-action
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0

# Login against a Docker registry except on PR
# https://github.com/docker/login-action
- name: Log into registry ${{ env.REGISTRY }}
if: github.event_name != 'pull_request'
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:

- name: Upload trivy/container AND application SBOMs as a Github artifact
if: ${{ github.event_name != 'pull_request' }}
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
with:
name: sbom
path: '${{ github.workspace }}/sbom-output/'
10 changes: 5 additions & 5 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Setup .NET
uses: actions/setup-dotnet@2016bd2012dba4e32de620c46fe006a3ac9f0602 # v5.0.1
uses: actions/setup-dotnet@baa11fbfe1d6520db94683bd5c7a3818018e4309 # v5.1.0
with:
dotnet-version: "8.0.x"

Expand All @@ -57,7 +57,7 @@ jobs:
run: dotnet test ${{ env.MODULE_TEST_PROJECT }} --configuration Release --no-build --logger "trx;LogFileName=module_test_results.trx" --collect:"XPlat Code Coverage" --settings source/coverlet.runsettings

- name: Publish Test Results
uses: dorny/test-reporter@fe45e9537387dac839af0d33ba56eed8e24189e8 # v2.3.0
uses: dorny/test-reporter@b082adf0eced0765477756c2a610396589b8c637 # v2.5.0
id: test-results
if: github.event.pull_request.head.repo.fork == false
with:
Expand Down Expand Up @@ -128,14 +128,14 @@ jobs:

- name: Add PR Comment
if: github.event.pull_request.head.repo.fork == false
uses: marocchino/sticky-pull-request-comment@331f8f5b4215f0445d3c07b4967662a32a2d3e31 # v2.9.0
uses: marocchino/sticky-pull-request-comment@773744901bac0e8cbb5a0dc842800d45e9b2b405 # v2.9.4
with:
recreate: true
path: results.md

- name: Upload TRX as artifact (Fork PR fallback)
if: github.event.pull_request.head.repo.fork == true
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
with:
name: test-results
path: "**/*_test_results.trx"
6 changes: 3 additions & 3 deletions .github/workflows/playwright-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Setup .NET
uses: actions/setup-dotnet@2016bd2012dba4e32de620c46fe006a3ac9f0602 # v5.0.1
uses: actions/setup-dotnet@baa11fbfe1d6520db94683bd5c7a3818018e4309 # v5.1.0
with:
dotnet-version: "8.0.x"

Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
BASE_URL: ${{ env.BASE_URL }}

- name: Publish Test Results
uses: dorny/test-reporter@fe45e9537387dac839af0d33ba56eed8e24189e8 # v2.3.0
uses: dorny/test-reporter@b082adf0eced0765477756c2a610396589b8c637 # v2.5.0
if: always()
with:
name: Playwright Test Results
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:

steps:
- name: "Checkout code"
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false

Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
# format to the repository Actions tab.
- name: "Upload artifact"
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
with:
name: SARIF file
path: results.sarif
Expand Down
Loading