Skip to content

Commit

Permalink
Upgrade all workflows to actions/checkout@v2 (#2013)
Browse files Browse the repository at this point in the history
* Upgrade all workflows to actions/checkout@v2
* fix markdown issue
  • Loading branch information
cpholguera authored Dec 20, 2021
1 parent 9fe073c commit 8aa0043
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/checkLinks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: link-check
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/checkLint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: markdownlint-cli
uses: nosborn/github-action-markdown-cli@9fc95163471d6460c35cccad13645912aaa25d5f
uses: nosborn/github-action-markdown-cli@v2.0.0
with:
files: Document
config_file: ".markdownlint.json"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docgenerator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
generate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
with:
fetch-depth: 1

Expand Down
4 changes: 2 additions & 2 deletions Document/0x06d-Testing-Data-Storage.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,12 +222,12 @@ A misconfigured Firebase instance can be identified by making the following netw
`https://\<firebaseProjectName\>.firebaseio.com/.json`
The _firebaseProjectName_ can be retrieved from the property list(.plist) file. For example, _PROJECT_ID_ key stores the corresponding Firebase project name in _GoogleService-Info.plist_ file.
The _firebaseProjectName_ can be retrieved from the property list(.plist) file. For example, `PROJECT_ID` key stores the corresponding Firebase project name in _GoogleService-Info.plist_ file.
Alternatively, the analysts can use [Firebase Scanner](https:/shivsahni/FireBaseScanner "Firebase Scanner"), a python script that automates the task above as shown below:
```bash
python FirebaseScanner.py -f <commaSeperatedFirebaseProjectNames>
python FirebaseScanner.py -f <commaSeparatedFirebaseProjectNames>
```

#### Realm databases
Expand Down

0 comments on commit 8aa0043

Please sign in to comment.