-
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.
- Loading branch information
Showing
49 changed files
with
2,439 additions
and
2,404 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 |
---|---|---|
|
@@ -27,7 +27,7 @@ APP_SECRET=e1023e5989bec76e282bd0ee405200e0 | |
# | ||
# DATABASE_URL="sqlite:///%kernel.project_dir%/var/data.db" | ||
# DATABASE_URL="mysql://app:[email protected]:3306/db_name?serverVersion=8" | ||
DATABASE_URL="mysql://spdrw:[email protected]/spdashboard?serverVersion=14&charset=utf8" | ||
DATABASE_URL="mysql://spdrw:[email protected]/spdashboard?serverVersion=mariadb-10.4.11&charset=utf8" | ||
###< doctrine/doctrine-bundle ### | ||
|
||
MAILER_DSN=null://null | ||
|
@@ -91,8 +91,13 @@ [email protected] | |
[email protected] | ||
[email protected] | ||
|
||
# When 'jira_enable_test_mode' is enabled (in services.yaml), 'jira_test_mode_storage_path' | ||
# must be configured with a filename in a directory that is writable for the user run ning the application. | ||
# When 'jira_enable_test_mode' is enabled, 'jira_test_mode_storage_path' must be configured with a filename in a | ||
# directory that is writable for the user run ning the application. | ||
# See the: | ||
# - Compiler pass (IssueRepositoryCompilerPass), | ||
# - environment specific services.yml file | ||
# - docs/jira.md readme | ||
# for details on how to enable the test stand in. | ||
jira_test_mode_storage_path='../var/issues.json' | ||
|
||
# Jira settings | ||
|
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,84 @@ | ||
--- | ||
name: Daily security check | ||
on: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
security: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v2 | ||
|
||
# PHP checks | ||
- name: Check for php composer project | ||
id: check_composer | ||
uses: andstor/file-existence-action@v2 | ||
with: | ||
files: "composer.lock" | ||
- name: Run php local security checker | ||
if: steps.check_composer.outputs.files_exists == 'true' | ||
uses: symfonycorp/security-checker-action@v4 | ||
continue-on-error: true | ||
|
||
# node-yarn checks | ||
- name: Check for node-yarn project | ||
id: check_node_yarn | ||
uses: andstor/file-existence-action@v2 | ||
with: | ||
files: "yarn.lock" | ||
- name: Setup node | ||
if: steps.check_node_yarn.outputs.files_exists == 'true' | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 14 | ||
- name: Yarn Audit | ||
if: steps.check_node_yarn.outputs.files_exists == 'true' | ||
run: yarn audit --level high --groups dependencies optionalDependencies | ||
continue-on-error: true | ||
|
||
# node-npm checks | ||
- name: Check for node-npm project | ||
id: check_node_npm | ||
uses: andstor/file-existence-action@v2 | ||
with: | ||
files: "package.lock" | ||
- name: Setup node | ||
if: steps.check_node_npm.outputs.files_exists == 'true' | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 14 | ||
- name: npm audit | ||
if: steps.check_node_npm.outputs.files_exists == 'true' | ||
run: npm audit --audit-level=high | ||
continue-on-error: true | ||
|
||
# python checks | ||
- name: Check for python project | ||
id: check_python | ||
uses: andstor/file-existence-action@v2 | ||
with: | ||
files: "requirements.txt" | ||
- name: Safety checks Python dependencies | ||
if: steps.check_python.outputs.files_exists == 'true' | ||
uses: pyupio/[email protected] | ||
continue-on-error: true | ||
|
||
# java checks | ||
- name: Check for java maven project | ||
id: check_maven | ||
uses: andstor/file-existence-action@v2 | ||
with: | ||
files: "pom.xml" | ||
- name: Setup java if needed | ||
if: steps.check_maven.outputs.files_exists == 'true' | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 11 | ||
- name: Check java | ||
if: steps.check_maven.outputs.files_exists == 'true' | ||
run: mvn org.owasp:dependency-check-maven:check | ||
continue-on-error: true |
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
This file was deleted.
Oops, something went wrong.
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.