forked from dbca-wa/it-assets
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request dbca-wa#481 from ropable/master
Prevent bad generated email addresses, bump project dependencies, update Kustomize definitions
- Loading branch information
Showing
9 changed files
with
268 additions
and
215 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
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,25 @@ | ||
name: "Scan project for secrets & sensitive information" | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
secret-scan: | ||
name: Scan project for secrets | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Secret scanning | ||
uses: trufflesecurity/trufflehog@main | ||
with: | ||
base: "" | ||
head: ${{ github.ref_name }} | ||
extra_args: --only-verified |
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 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
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "itassets" | ||
version = "2.4.31" | ||
version = "2.4.32" | ||
description = "DBCA IT assets (both physical and knowledge-based) management system" | ||
authors = ["DBCA OIM <[email protected]>"] | ||
license = "Apache-2.0" | ||
|
@@ -13,25 +13,25 @@ psycopg = { version = "3.2.3", extras = ["binary", "pool"] } | |
dbca-utils = "2.0.2" | ||
django-extensions = "3.2.3" | ||
python-dotenv = "1.0.1" | ||
dj-database-url = "2.2.0" | ||
dj-database-url = "2.3.0" | ||
gunicorn = "23.0.0" | ||
unicodecsv = "0.14.1" | ||
python-dateutil = "2.8.2" | ||
webtemplate-dbca = "1.7.1" | ||
mixer = "7.2.2" | ||
msal = "1.31.0" | ||
whitenoise = { version = "6.7.0", extras = ["brotli"] } | ||
whitenoise = { version = "6.8.2", extras = ["brotli"] } | ||
pysftp = "0.2.9" | ||
azure-storage-blob = "12.23.1" | ||
django-storages = { version = "1.14.4", extras = ["azure"] } | ||
xlsxwriter = "3.2.0" | ||
sentry-sdk = { version = "2.14.0", extras = ["django"] } | ||
redis = "5.1.0" | ||
sentry-sdk = { version = "2.18.0", extras = ["django"] } | ||
redis = "5.2.0" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
ipython = "^8.27.0" | ||
ipython = "^8.29.0" | ||
ipdb = "^0.13.13" | ||
pre-commit = "^3.8.0" | ||
pre-commit = "^4.0.1" | ||
|
||
# Reference: https://docs.astral.sh/ruff/configuration/ | ||
[tool.ruff] | ||
|