Skip to content

Commit

Permalink
fix: Mend Unified Agent Release Scan (#512)
Browse files Browse the repository at this point in the history
  • Loading branch information
tumms2021389 authored Oct 1, 2024
1 parent 8713a7d commit a03c3fa
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/mend-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ jobs:
java -jar wss-unified-agent.jar
fi
- name: 'Upload WhiteSource folder'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: Mend
path: whitesource
retention-days: 14
- name: 'Upload Mend folder if failure'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
if: failure()
with:
name: Mend
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
run: npm run build:dev:ci
- name: Install Playwright
run: npx playwright install --with-deps
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
Expand Down
2 changes: 1 addition & 1 deletion src/samples/Embedded/EmbeddedTopLevel/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ export default function EmbeddedTopLevel() {
getSdkConfig().then(sdkConfig => {
let mashupCaseType = sdkConfig.serverConfig.appMashupCaseType;
if (!mashupCaseType) {
const caseTypes = (PCore.getEnvironmentInfo() as any).environmentInfoObject.pyCaseTypeList;
const caseTypes = (PCore.getEnvironmentInfo().environmentInfoObject as any).pyCaseTypeList;
mashupCaseType = caseTypes[0].pyWorkTypeImplementationClassName;
}

Expand Down

0 comments on commit a03c3fa

Please sign in to comment.