Skip to content

Commit

Permalink
Set depth to 0 & add last updated to the tests table (#2564)
Browse files Browse the repository at this point in the history
* Set depth to 0 to fix latest updated files

* add 'Last Updated'
  • Loading branch information
cpholguera authored Feb 20, 2024
1 parent d40ae0b commit b021623
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
fetch-depth: 0

- uses: actions/setup-python@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/populate_dynamic_pages.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def reorder_dict_keys(original_dict, key_order):

# tests/index.md

column_titles = {'id': 'ID', 'title': 'Name', 'masvs_v2_id': "MASVS v2 ID", 'masvs_v1_id': "MASVS v1 IDs"} #'id': 'ID', ... , 'refs': 'Refs', 'techniques': 'Techniques', 'last_updated': 'Last Updated'
column_titles = {'id': 'ID', 'title': 'Name', 'masvs_v2_id': "MASVS v2 ID", 'masvs_v1_id': "MASVS v1 IDs", 'last_updated': 'Last Updated'} #'id': 'ID', ... , 'refs': 'Refs', 'techniques': 'Techniques'

tests = get_mastg_components_dict("docs/MASTG/tests")
test_types = ["android", "ios"]
Expand Down

0 comments on commit b021623

Please sign in to comment.