⬆️ Update dependency eslint to v9 #251
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
--- | |
name: Pipeline - Xanitizer | |
on: | |
push: | |
schedule: | |
- '0 5 * * *' | |
jobs: | |
xanitizer_security_analysis: | |
runs-on: ubuntu-latest | |
steps: | |
# More info: https://github.com/step-security/harden-runner. | |
- name: Harden Runner | |
id: harden_runner | |
uses: step-security/harden-runner@ebacdc22ef6c2cfb85ee5ded8f2e640f4c776dd5 | |
with: | |
egress-policy: audit | |
- name: Checkout Project | |
uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b | |
- name: Use Node.js v16 | |
uses: actions/setup-node@8c91899e586c5b171469028077307d293428b516 | |
with: | |
node-version: 16.10.0 | |
cache: pnpm | |
- name: Install Dependencies | |
run: pnpm --frozen-lockfile | |
- name: Xanitizer Security Analysis | |
uses: RIGS-IT/xanitizer-action@87d13138fb113b727cbe040c744a15a2b4fe5316 | |
with: | |
license: ${{ secrets.XANITIZER_LICENSE }} | |
- name: Upload artifact | |
uses: actions/upload-artifact@83fd05a356d7e2593de66fc9913b3002723633cb | |
with: | |
name: Xanitizer-Reports | |
path: | | |
*-Findings-List.pdf | |
*-Findings-List.sarif | |
- name: Upload SARIF File | |
uses: github/codeql-action/upload-sarif@c719ec0b337ad8a0f3336d778d54e0f30df35713 | |
with: | |
sarif_file: Xanitizer-Findings-List.sarif |