Skip to content

Commit f968307

Browse files
authored
Merge pull request #13 from topcoder-platform/develop
[v6 PROD RELEASE] - dev -> master
2 parents e6053fe + c558b5e commit f968307

File tree

9 files changed

+313
-16
lines changed

9 files changed

+313
-16
lines changed

.circleci/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ workflows:
6868
branches:
6969
only:
7070
- develop
71+
- pm-2539
7172

7273
# Production builds are exectuted only on tagged commits to the
7374
# master branch.

.env.sample

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,11 @@ SERVICEACC02_CID="devadmin1"
143143
SERVICEACC02_SECRET="devadmin1"
144144
SERVICEACC02_UID="100000027"
145145

146-
# Note: Registration default password is no longer configurable; for social/SSO
147-
# registrations without a provided password, a unique 16-character random
148-
# password is generated at registration time.
146+
# Note: Registration default password is no longer configurable; for social/SSO
147+
# registrations without a provided password, a unique 16-character random
148+
# password is generated at registration time.
149+
150+
151+
# Prisma configuration
152+
153+
IDENTITY_SERVICE_PRISMA_TIMEOUT=10000

.github/workflows/trivy.yaml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: Trivy Scanner
2+
3+
permissions:
4+
contents: read
5+
security-events: write
6+
on:
7+
push:
8+
branches:
9+
- main
10+
- dev
11+
pull_request:
12+
jobs:
13+
trivy-scan:
14+
name: Use Trivy
15+
runs-on: ubuntu-24.04
16+
steps:
17+
- name: Checkout code
18+
uses: actions/checkout@v4
19+
20+
- name: Run Trivy scanner in repo mode
21+
uses: aquasecurity/[email protected]
22+
with:
23+
scan-type: "fs"
24+
ignore-unfixed: true
25+
format: "sarif"
26+
output: "trivy-results.sarif"
27+
severity: "CRITICAL,HIGH,UNKNOWN"
28+
scanners: vuln,secret,misconfig,license
29+
github-pat: ${{ secrets.GITHUB_TOKEN }}
30+
31+
- name: Upload Trivy scan results to GitHub Security tab
32+
uses: github/codeql-action/upload-sarif@v3
33+
with:
34+
sarif_file: "trivy-results.sarif"

0 commit comments

Comments
 (0)