mirror of
https://github.com/SrIzan10/js.org.git
synced 2026-05-01 10:45:28 +00:00
Restrict the GitHub token permissions only to the required ones; this way, even if the attackers will succeed in compromising your workflow, they won’t be able to do much. - Included permissions for the action. https://github.com/ossf/scorecard/blob/main/docs/checks.md#token-permissions https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs [Keeping your GitHub Actions and workflows secure Part 1: Preventing pwn requests](https://securitylab.github.com/research/github-actions-preventing-pwn-requests/) Signed-off-by: nathannaveen <42319948+nathannaveen@users.noreply.github.com>
44 lines
939 B
YAML
44 lines
939 B
YAML
name: Validate cnames_active.js
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
validate:
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
|
GH_EVENT_HASH: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
ref: ${{ env.GH_EVENT_HASH }}
|
|
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
repository: js-org/js.org-cleanup
|
|
path: cleanup
|
|
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version-file: cleanup/.nvmrc
|
|
cache: npm
|
|
cache-dependency-path: cleanup/package-lock.json
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
working-directory: cleanup
|
|
|
|
- name: Validate cnames_active.js
|
|
run: node index.js --validate ../cnames_active.js
|
|
working-directory: cleanup
|