From 71582c5b1ebce80ac97aef01ed1dfd4e46b7fce7 Mon Sep 17 00:00:00 2001 From: Simon Koschel <63048969+simonlet@users.noreply.github.com> Date: Tue, 31 Mar 2026 09:06:14 +0200 Subject: [PATCH 1/3] chore: pin GitHub Actions to SHA hashes Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/bump-version.yaml | 2 +- .github/workflows/publish-context.yaml | 4 ++-- .github/workflows/verify.yaml | 18 +++++++++--------- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/bump-version.yaml b/.github/workflows/bump-version.yaml index 34d63baad2a..f54b3540958 100644 --- a/.github/workflows/bump-version.yaml +++ b/.github/workflows/bump-version.yaml @@ -16,7 +16,7 @@ jobs: name: 'Update snapshot version' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - uses: sovity/core-edc-github/.github/actions/bump-version@0.15.0_2025-12-05_1 name: Bump version with: diff --git a/.github/workflows/publish-context.yaml b/.github/workflows/publish-context.yaml index aedf732d5fc..6e8f5d75896 100644 --- a/.github/workflows/publish-context.yaml +++ b/.github/workflows/publish-context.yaml @@ -36,7 +36,7 @@ jobs: contents: write pages: write steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - name: copy contexts into public folder run: | mkdir -p public/context @@ -46,7 +46,7 @@ jobs: mkdir -p public/schema cp -r extensions/common/api/management-api-schema-validator/src/main/resources/schema/management public/schema/ - name: deploy to gh-pages - uses: peaceiris/actions-gh-pages@v4 + uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4.0.0 with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./public diff --git a/.github/workflows/verify.yaml b/.github/workflows/verify.yaml index e71e9596778..c24d8f3d50c 100644 --- a/.github/workflows/verify.yaml +++ b/.github/workflows/verify.yaml @@ -30,7 +30,7 @@ jobs: Checkstyle: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_1 - name: Run Checkstyle run: ./gradlew checkstyleMain checkstyleTest checkstyleTestFixtures @@ -38,7 +38,7 @@ jobs: Javadoc: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_1 - name: Run Javadoc run: ./gradlew javadoc @@ -46,7 +46,7 @@ jobs: Unit-Tests: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_1 - name: Run unit tests run: ./gradlew test @@ -54,7 +54,7 @@ jobs: Postgresql-Integration-Tests: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_1 - name: Postgresql Tests run: ./gradlew test -DincludeTags="PostgresqlIntegrationTest" @@ -62,7 +62,7 @@ jobs: End-To-End-Tests: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_1 - name: End to End Integration Tests run: ./gradlew test -DincludeTags="EndToEndTest" @@ -70,7 +70,7 @@ jobs: Component-Tests: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_1 - name: Component Tests run: ./gradlew test -DincludeTags="ComponentTest" @@ -78,7 +78,7 @@ jobs: API-Tests: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_1 - name: Component Tests run: ./gradlew test -DincludeTags="ApiTest" @@ -86,7 +86,7 @@ jobs: Tck-Tests: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_1 - name: TCK Tests run: ./gradlew compileJava compileTestJava test -DincludeTags="TckTest" -PverboseTest=true @@ -111,7 +111,7 @@ jobs: contents: read packages: write steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - name: "Gradle: Publish to Production" if: ${{ startsWith(github.ref, 'refs/tags/v') }} From 58dcf9ea0fb07e5f5db12be9e35084d47c668022 Mon Sep 17 00:00:00 2001 From: Simon Koschel <63048969+simonlet@users.noreply.github.com> Date: Tue, 31 Mar 2026 09:31:38 +0200 Subject: [PATCH 2/3] chore: update Core-EDC GitHub Actions to use tag 0.15.0_2025-12-05_2 --- .github/workflows/bump-version.yaml | 2 +- .github/workflows/prepare-release.yml | 2 +- .github/workflows/publish-autodoc.yml | 2 +- .github/workflows/publish-openapi-ui.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/scan-pull-request.yaml | 2 +- .github/workflows/trigger_snapshot.yml | 4 ++-- .github/workflows/verify.yaml | 20 ++++++++++---------- 8 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/bump-version.yaml b/.github/workflows/bump-version.yaml index f54b3540958..c9282107af4 100644 --- a/.github/workflows/bump-version.yaml +++ b/.github/workflows/bump-version.yaml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - - uses: sovity/core-edc-github/.github/actions/bump-version@0.15.0_2025-12-05_1 + - uses: sovity/core-edc-github/.github/actions/bump-version@0.15.0_2025-12-05_2 name: Bump version with: target_branch: ${{ inputs.target_branch }} diff --git a/.github/workflows/prepare-release.yml b/.github/workflows/prepare-release.yml index 27a640ea3e3..fe8b5d76ce6 100644 --- a/.github/workflows/prepare-release.yml +++ b/.github/workflows/prepare-release.yml @@ -10,7 +10,7 @@ on: jobs: Prepare-Release: - uses: sovity/core-edc-github/.github/workflows/prepare-release.yml@0.15.0_2025-12-05_1 + uses: sovity/core-edc-github/.github/workflows/prepare-release.yml@0.15.0_2025-12-05_2 secrets: inherit with: version: ${{ inputs.version }} diff --git a/.github/workflows/publish-autodoc.yml b/.github/workflows/publish-autodoc.yml index 6054e6e600f..c128600f08c 100644 --- a/.github/workflows/publish-autodoc.yml +++ b/.github/workflows/publish-autodoc.yml @@ -13,7 +13,7 @@ on: jobs: publish: - uses: sovity/core-edc-github/.github/workflows/publish-autodoc.yml@0.15.0_2025-12-05_1 + uses: sovity/core-edc-github/.github/workflows/publish-autodoc.yml@0.15.0_2025-12-05_2 secrets: inherit with: version: ${{ github.event.inputs.version }} diff --git a/.github/workflows/publish-openapi-ui.yml b/.github/workflows/publish-openapi-ui.yml index ae6d07d69f4..42481f781cd 100644 --- a/.github/workflows/publish-openapi-ui.yml +++ b/.github/workflows/publish-openapi-ui.yml @@ -7,5 +7,5 @@ on: jobs: publish: - uses: sovity/core-edc-github/.github/workflows/publish-openapi-ui.yml@0.15.0_2025-12-05_1 + uses: sovity/core-edc-github/.github/workflows/publish-openapi-ui.yml@0.15.0_2025-12-05_2 secrets: inherit diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1f79cf1a222..8c6b294fded 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,7 +6,7 @@ on: jobs: Release: - uses: sovity/core-edc-github/.github/workflows/release.yml@0.15.0_2025-12-05_1 + uses: sovity/core-edc-github/.github/workflows/release.yml@0.15.0_2025-12-05_2 secrets: inherit with: publish-autodoc: true diff --git a/.github/workflows/scan-pull-request.yaml b/.github/workflows/scan-pull-request.yaml index b5639f27893..3d39543deb5 100644 --- a/.github/workflows/scan-pull-request.yaml +++ b/.github/workflows/scan-pull-request.yaml @@ -11,6 +11,6 @@ concurrency: jobs: trigger-workflow: - uses: sovity/core-edc-github/.github/workflows/scan-pull-request.yml@0.15.0_2025-12-05_1 + uses: sovity/core-edc-github/.github/workflows/scan-pull-request.yml@0.15.0_2025-12-05_2 secrets: envGH: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/trigger_snapshot.yml b/.github/workflows/trigger_snapshot.yml index 4125848eca1..3104cc191ef 100644 --- a/.github/workflows/trigger_snapshot.yml +++ b/.github/workflows/trigger_snapshot.yml @@ -9,9 +9,9 @@ on: jobs: Publish-Snapshot: # This workflow will abort if the required secrets don't exist - uses: sovity/core-edc-github/.github/workflows/publish-snapshot.yml@0.15.0_2025-12-05_1 + uses: sovity/core-edc-github/.github/workflows/publish-snapshot.yml@0.15.0_2025-12-05_2 secrets: inherit Publish-Dependencies: - uses: sovity/core-edc-github/.github/workflows/publish-dependencies.yml@0.15.0_2025-12-05_1 + uses: sovity/core-edc-github/.github/workflows/publish-dependencies.yml@0.15.0_2025-12-05_2 secrets: inherit diff --git a/.github/workflows/verify.yaml b/.github/workflows/verify.yaml index c24d8f3d50c..1c5de403049 100644 --- a/.github/workflows/verify.yaml +++ b/.github/workflows/verify.yaml @@ -24,14 +24,14 @@ concurrency: jobs: CodeQL: - uses: sovity/core-edc-github/.github/workflows/codeql-analysis.yml@0.15.0_2025-12-05_1 + uses: sovity/core-edc-github/.github/workflows/codeql-analysis.yml@0.15.0_2025-12-05_2 secrets: inherit Checkstyle: runs-on: ubuntu-latest steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_1 + - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_2 - name: Run Checkstyle run: ./gradlew checkstyleMain checkstyleTest checkstyleTestFixtures @@ -39,7 +39,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_1 + - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_2 - name: Run Javadoc run: ./gradlew javadoc @@ -47,7 +47,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_1 + - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_2 - name: Run unit tests run: ./gradlew test @@ -55,7 +55,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_1 + - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_2 - name: Postgresql Tests run: ./gradlew test -DincludeTags="PostgresqlIntegrationTest" @@ -63,7 +63,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_1 + - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_2 - name: End to End Integration Tests run: ./gradlew test -DincludeTags="EndToEndTest" @@ -71,7 +71,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_1 + - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_2 - name: Component Tests run: ./gradlew test -DincludeTags="ComponentTest" @@ -79,7 +79,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_1 + - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_2 - name: Component Tests run: ./gradlew test -DincludeTags="ApiTest" @@ -87,13 +87,13 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_1 + - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_2 - name: TCK Tests run: ./gradlew compileJava compileTestJava test -DincludeTags="TckTest" -PverboseTest=true Verify-OpenApi: if: github.event_name == 'pull_request' - uses: sovity/core-edc-github/.github/workflows/verify-openapi.yml@0.15.0_2025-12-05_1 + uses: sovity/core-edc-github/.github/workflows/verify-openapi.yml@0.15.0_2025-12-05_2 secrets: inherit Publish-Artifacts: From 2380ff6f8294052e80e6de1ac7b3ae8fa6a013c6 Mon Sep 17 00:00:00 2001 From: Simon Koschel <63048969+simonlet@users.noreply.github.com> Date: Tue, 31 Mar 2026 10:41:34 +0200 Subject: [PATCH 3/3] chore: update Core-EDC GitHub Actions to use tag 0.15.0_2025-12-05_3 --- .github/workflows/bump-version.yaml | 2 +- .github/workflows/prepare-release.yml | 2 +- .github/workflows/publish-autodoc.yml | 2 +- .github/workflows/publish-openapi-ui.yml | 2 +- .github/workflows/release.yml | 2 +- .github/workflows/scan-pull-request.yaml | 2 +- .github/workflows/trigger_snapshot.yml | 4 ++-- .github/workflows/verify.yaml | 20 ++++++++++---------- 8 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/bump-version.yaml b/.github/workflows/bump-version.yaml index c9282107af4..14a7b7e554a 100644 --- a/.github/workflows/bump-version.yaml +++ b/.github/workflows/bump-version.yaml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - - uses: sovity/core-edc-github/.github/actions/bump-version@0.15.0_2025-12-05_2 + - uses: sovity/core-edc-github/.github/actions/bump-version@0.15.0_2025-12-05_3 name: Bump version with: target_branch: ${{ inputs.target_branch }} diff --git a/.github/workflows/prepare-release.yml b/.github/workflows/prepare-release.yml index fe8b5d76ce6..6cf61ffbf27 100644 --- a/.github/workflows/prepare-release.yml +++ b/.github/workflows/prepare-release.yml @@ -10,7 +10,7 @@ on: jobs: Prepare-Release: - uses: sovity/core-edc-github/.github/workflows/prepare-release.yml@0.15.0_2025-12-05_2 + uses: sovity/core-edc-github/.github/workflows/prepare-release.yml@0.15.0_2025-12-05_3 secrets: inherit with: version: ${{ inputs.version }} diff --git a/.github/workflows/publish-autodoc.yml b/.github/workflows/publish-autodoc.yml index c128600f08c..83a98a6ba1b 100644 --- a/.github/workflows/publish-autodoc.yml +++ b/.github/workflows/publish-autodoc.yml @@ -13,7 +13,7 @@ on: jobs: publish: - uses: sovity/core-edc-github/.github/workflows/publish-autodoc.yml@0.15.0_2025-12-05_2 + uses: sovity/core-edc-github/.github/workflows/publish-autodoc.yml@0.15.0_2025-12-05_3 secrets: inherit with: version: ${{ github.event.inputs.version }} diff --git a/.github/workflows/publish-openapi-ui.yml b/.github/workflows/publish-openapi-ui.yml index 42481f781cd..b9a5b50e6af 100644 --- a/.github/workflows/publish-openapi-ui.yml +++ b/.github/workflows/publish-openapi-ui.yml @@ -7,5 +7,5 @@ on: jobs: publish: - uses: sovity/core-edc-github/.github/workflows/publish-openapi-ui.yml@0.15.0_2025-12-05_2 + uses: sovity/core-edc-github/.github/workflows/publish-openapi-ui.yml@0.15.0_2025-12-05_3 secrets: inherit diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8c6b294fded..ba8c9ae2bc4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,7 +6,7 @@ on: jobs: Release: - uses: sovity/core-edc-github/.github/workflows/release.yml@0.15.0_2025-12-05_2 + uses: sovity/core-edc-github/.github/workflows/release.yml@0.15.0_2025-12-05_3 secrets: inherit with: publish-autodoc: true diff --git a/.github/workflows/scan-pull-request.yaml b/.github/workflows/scan-pull-request.yaml index 3d39543deb5..b009b6b42b7 100644 --- a/.github/workflows/scan-pull-request.yaml +++ b/.github/workflows/scan-pull-request.yaml @@ -11,6 +11,6 @@ concurrency: jobs: trigger-workflow: - uses: sovity/core-edc-github/.github/workflows/scan-pull-request.yml@0.15.0_2025-12-05_2 + uses: sovity/core-edc-github/.github/workflows/scan-pull-request.yml@0.15.0_2025-12-05_3 secrets: envGH: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/trigger_snapshot.yml b/.github/workflows/trigger_snapshot.yml index 3104cc191ef..0516448c75d 100644 --- a/.github/workflows/trigger_snapshot.yml +++ b/.github/workflows/trigger_snapshot.yml @@ -9,9 +9,9 @@ on: jobs: Publish-Snapshot: # This workflow will abort if the required secrets don't exist - uses: sovity/core-edc-github/.github/workflows/publish-snapshot.yml@0.15.0_2025-12-05_2 + uses: sovity/core-edc-github/.github/workflows/publish-snapshot.yml@0.15.0_2025-12-05_3 secrets: inherit Publish-Dependencies: - uses: sovity/core-edc-github/.github/workflows/publish-dependencies.yml@0.15.0_2025-12-05_2 + uses: sovity/core-edc-github/.github/workflows/publish-dependencies.yml@0.15.0_2025-12-05_3 secrets: inherit diff --git a/.github/workflows/verify.yaml b/.github/workflows/verify.yaml index 1c5de403049..4548be8d27f 100644 --- a/.github/workflows/verify.yaml +++ b/.github/workflows/verify.yaml @@ -24,14 +24,14 @@ concurrency: jobs: CodeQL: - uses: sovity/core-edc-github/.github/workflows/codeql-analysis.yml@0.15.0_2025-12-05_2 + uses: sovity/core-edc-github/.github/workflows/codeql-analysis.yml@0.15.0_2025-12-05_3 secrets: inherit Checkstyle: runs-on: ubuntu-latest steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_2 + - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_3 - name: Run Checkstyle run: ./gradlew checkstyleMain checkstyleTest checkstyleTestFixtures @@ -39,7 +39,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_2 + - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_3 - name: Run Javadoc run: ./gradlew javadoc @@ -47,7 +47,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_2 + - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_3 - name: Run unit tests run: ./gradlew test @@ -55,7 +55,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_2 + - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_3 - name: Postgresql Tests run: ./gradlew test -DincludeTags="PostgresqlIntegrationTest" @@ -63,7 +63,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_2 + - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_3 - name: End to End Integration Tests run: ./gradlew test -DincludeTags="EndToEndTest" @@ -71,7 +71,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_2 + - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_3 - name: Component Tests run: ./gradlew test -DincludeTags="ComponentTest" @@ -79,7 +79,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_2 + - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_3 - name: Component Tests run: ./gradlew test -DincludeTags="ApiTest" @@ -87,13 +87,13 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_2 + - uses: sovity/core-edc-github/.github/actions/setup-build@0.15.0_2025-12-05_3 - name: TCK Tests run: ./gradlew compileJava compileTestJava test -DincludeTags="TckTest" -PverboseTest=true Verify-OpenApi: if: github.event_name == 'pull_request' - uses: sovity/core-edc-github/.github/workflows/verify-openapi.yml@0.15.0_2025-12-05_2 + uses: sovity/core-edc-github/.github/workflows/verify-openapi.yml@0.15.0_2025-12-05_3 secrets: inherit Publish-Artifacts: