-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merged pull request #72 * #50 - Add support for JMeter remote testing (#52) ** Added `enableRemoteExecution` (-r) and `exitRemoteServers` (-X) properties * #48 - `jmeterGui` task fails when dependent task `setupJMeter` is skipped due to up-to-date check. * #51 - Add dependency check (#54) * Bump org.jetbrains.dokka from 1.5.0 to 1.7.10 (#58) * Bump io.gitlab.arturbosch.detekt from 1.18.0 to 1.21.0 (#59) * Bump kotest-assertions-core from 4.6.4 to 5.3.2 (#55) * Bump junit-bom from 5.7.2 to 5.8.2 (#57) * Bump com.gradle.plugin-publish from 0.15.0 to 1.0.0 (#56) * #60 update configuration and fix issues arose from version updates (#61) ** Updated detekt rules & fixed smells ** Fixed unit tests ** Fixed `publish-publish` issue and also added signin ** added owasp dependency check plugin & created check workflow * Bump org.jetbrains.changelog from 1.3.0 to 1.3.1 (#63) ** enhanced ODC-workflow for dependabot ** updated CHANGELOG missing #48 bug-fix * Bump jvm from 1.6.10 to 1.7.10 (#62) ** fixed snapshot-release signing issue ** simplified ODC workflow * #64 - Enable version updated checks for actions (#65) * Bump actions/checkout from 2 to 3 (#67) ** changed to use full qualified version tag * Bump actions/upload-artifact from 2 to 3 (#70) ** change to use full qualified version tag * Bump thomaseizinger/create-pull-request from 1.0.0 to 1.2.2 (#68) * Bump codecov/codecov-action from 2 to 3 (#66) ** change to use full qualified version tag ** Prepare release 2.4.0 * Fixed signing issue in publish step
- Loading branch information
Showing
25 changed files
with
739 additions
and
417 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "gradle" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: "Check out sources" | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3.0.2 | ||
|
||
- name: "Detekt" | ||
uses: burrunan/gradle-cache-action@v1 | ||
|
@@ -22,8 +22,16 @@ jobs: | |
save-local-build-cache: false | ||
arguments: detekt | ||
|
||
- name: "Upload sarif report" | ||
uses: github/codeql-action/upload-sarif@v2 | ||
if: success() || failure() | ||
with: | ||
sarif_file: build/reports/detekt/detekt.sarif | ||
category: detekt | ||
|
||
- name: "Upload detekt report" | ||
uses: actions/upload-artifact@v2 | ||
uses: actions/[email protected] | ||
if: success() || failure() | ||
with: | ||
name: detektReport | ||
path: build/reports/detekt | ||
|
@@ -33,7 +41,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: "Check out sources" | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3.0.2 | ||
|
||
- name: "Fossa analyze" | ||
uses: fossas/fossa-action@v1 | ||
|
@@ -51,7 +59,7 @@ jobs: | |
name: "Build artifact" | ||
steps: | ||
- name: "Check out sources" | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3.0.2 | ||
|
||
- name: "Compile" | ||
uses: burrunan/gradle-cache-action@v1 | ||
|
@@ -64,7 +72,7 @@ jobs: | |
needs: compile | ||
steps: | ||
- name: "Check out sources" | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3.0.2 | ||
|
||
- name: "Validate plugin" | ||
uses: burrunan/gradle-cache-action@v1 | ||
|
@@ -77,7 +85,7 @@ jobs: | |
needs: compile | ||
steps: | ||
- name: "Check out sources" | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3.0.2 | ||
|
||
- name: "Unit test coverage cache" | ||
uses: actions/cache@v2 | ||
|
@@ -102,7 +110,7 @@ jobs: | |
files: build/test-results/**/*.xml | ||
|
||
- name: "Upload unit test report" | ||
uses: actions/upload-artifact@v2 | ||
uses: actions/upload-artifact@v3.0.0 | ||
if: always() | ||
with: | ||
name: unitTestReport | ||
|
@@ -113,7 +121,7 @@ jobs: | |
needs: compile | ||
steps: | ||
- name: "Check out sources" | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3.0.2 | ||
|
||
- name: "Functional test coverage cache" | ||
uses: actions/cache@v2 | ||
|
@@ -136,7 +144,7 @@ jobs: | |
files: build/test-results/functionalTest/*.xml | ||
|
||
- name: "Upload functional test report" | ||
uses: actions/upload-artifact@v2 | ||
uses: actions/upload-artifact@v3.0.0 | ||
if: always() | ||
with: | ||
name: functionalTestReport | ||
|
@@ -149,7 +157,7 @@ jobs: | |
- functionalTest | ||
steps: | ||
- name: "Check out sources" | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3.0.2 | ||
|
||
- name: "Load unit test coverage cache" | ||
uses: actions/cache@v2 | ||
|
@@ -171,7 +179,7 @@ jobs: | |
arguments: jacocoTestReport | ||
|
||
- name: "Publish Report" | ||
uses: codecov/codecov-action@v2 | ||
uses: codecov/codecov-action@v3.0.0 | ||
|
||
publishSnapshot: | ||
runs-on: ubuntu-latest | ||
|
@@ -181,19 +189,21 @@ jobs: | |
- licenceCheck | ||
steps: | ||
- name: "Check out sources" | ||
uses: actions/checkout@v2 | ||
uses: actions/checkout@v3.0.2 | ||
|
||
- name: "Load compile cache" | ||
uses: actions/cache@v2 | ||
with: | ||
path: ${{ github.workspace }}/build/** | ||
key: ${{ runner.os }}-compile-${{ github.run_id }} | ||
|
||
- name: "Publish snapshot" | ||
- name: "Publish snapshot to github" | ||
uses: burrunan/gradle-cache-action@v1 | ||
env: | ||
USERNAME: ${{ github.actor }} | ||
TOKEN: ${{ github.token }} | ||
ORG_GRADLE_PROJECT_signingKey: ${{ secrets.MVN_CNTRL_SECRET_KEY }} | ||
ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.MVN_CNTRL_SECRET_KEY_PASS }} | ||
with: | ||
remote-build-cache-proxy-enabled: false | ||
save-local-build-cache: false | ||
|
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: "ODC-Scan for vulnerabilities" | ||
|
||
on: | ||
schedule: | ||
# on a weekly basis for new identified issues | ||
- cron: '0 16 * * 5' # 16 o'clock UTC every friday | ||
push: | ||
paths: | ||
# if build script changes which may introduce new issues | ||
- build.gradle.kts | ||
|
||
jobs: | ||
check: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
security-events: write | ||
steps: | ||
- uses: actions/[email protected] | ||
|
||
- name: "Run owasp check" | ||
uses: burrunan/gradle-cache-action@v1 | ||
with: | ||
remote-build-cache-proxy-enabled: false | ||
arguments: dependencyCheckAnalyze | ||
|
||
- name: "Upload sarif report" | ||
uses: github/codeql-action/upload-sarif@v2 | ||
if: always() | ||
with: | ||
sarif_file: build/reports/dependency-check-report.sarif | ||
category: 'owasp dependency check' | ||
|
||
- name: 'pack reports' | ||
uses: edgarrc/action-7z@v1 | ||
with: | ||
args: 7z a -t7z dependency-check-report ./build/reports/dependency-c*.* | ||
|
||
- name: "Upload report" | ||
uses: actions/[email protected] | ||
if: always() | ||
with: | ||
name: owaspCheckReport | ||
path: dependency-check-report.* |
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
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
Oops, something went wrong.