Bump eslint-plugin-promise from 7.1.0 to 7.2.1 #1291
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: "sast" | |
on: | |
pull_request: | |
branches: | |
- "main" | |
push: | |
branches: | |
- "main" | |
schedule: | |
- cron: "19 19 * * 4" | |
permissions: "read-all" | |
jobs: | |
ossf: | |
runs-on: "ubuntu-latest" | |
# ossf scorecard only supported on main branch | |
if: github.event_name != 'pull_request' | |
permissions: | |
security-events: "write" | |
id-token: "write" | |
contents: "read" | |
actions: "read" | |
steps: | |
- uses: "actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683" | |
with: | |
persist-credentials: false | |
- uses: "ossf/scorecard-action@62b2cac7ed8198b15735ed49ab1e5cf35480ba46" | |
with: | |
results_file: "results.sarif" | |
results_format: "sarif" | |
publish_results: true | |
- uses: "actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882" | |
with: | |
name: "SARIF file" | |
path: "results.sarif" | |
retention-days: 5 | |
- uses: "github/codeql-action/upload-sarif@ea9e4e37992a54ee68a9622e985e60c8e8f12d9f" | |
with: | |
sarif_file: "results.sarif" | |
codeql: | |
runs-on: "ubuntu-latest" | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
steps: | |
- uses: "actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683" | |
- uses: "github/codeql-action/init@ea9e4e37992a54ee68a9622e985e60c8e8f12d9f" | |
with: | |
languages: "typescript" | |
- uses: "pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2" | |
with: | |
version: "latest" | |
- uses: "actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af" | |
with: | |
node-version-file: ".nvmrc" | |
cache: "pnpm" | |
- run: "make install" | |
- uses: "github/codeql-action/analyze@ea9e4e37992a54ee68a9622e985e60c8e8f12d9f" |