Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
12 changes: 6 additions & 6 deletions .github/actions/integration-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ runs:
cache: 'maven'

- name: Download Maven State
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: maven-state

- name: Download Compiled Classes
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: compiled-classes

- name: Download JARs
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: jars

Expand Down Expand Up @@ -86,7 +86,7 @@ runs:
exit "${return_code}"

- name: Upload Integration Test Report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: ${{ always() }}
with:
name: int-test-report
Expand All @@ -95,7 +95,7 @@ runs:
retention-days: 2

- name: Upload Integration Test App Logs
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: ${{ always() }}
with:
name: int-test-app-logs
Expand All @@ -105,7 +105,7 @@ runs:

- name: Publish Report
if: ${{ always() }}
uses: turing85/publish-report@v2
uses: turing85/publish-report@v3
with:
report-name: Integration Test
report-path: '**/target/cucumber-reports/cucumber.xml'
12 changes: 6 additions & 6 deletions .github/actions/owasp/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,25 +24,25 @@ runs:
cache: 'maven'

- name: OWASP DB Cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: owasp-db
key: owasp-db

- name: Download Maven State
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
if: ${{ inputs.download-artifacts == 'true' }}
with:
name: maven-state

- name: Download Compiled Classes
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
if: ${{ inputs.download-artifacts == 'true' }}
with:
name: compiled-classes

- name: Download JARs
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
if: ${{ inputs.download-artifacts == 'true' }}
with:
name: jars
Expand All @@ -59,7 +59,7 @@ runs:
package

- name: Upload OWASP Scan Report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
if: ${{ always() }}
with:
if-no-files-found: error
Expand All @@ -69,7 +69,7 @@ runs:

- name: Publish Report
if: ${{ always() }}
uses: turing85/publish-report@v2
uses: turing85/publish-report@v3
with:
report-list-tests: failed
report-name: OWASP Scan
Expand Down
Loading