diff --git a/.github/workflows/node-ci.yml b/.github/workflows/node-ci.yml index 720aee78..1b597dec 100644 --- a/.github/workflows/node-ci.yml +++ b/.github/workflows/node-ci.yml @@ -17,6 +17,11 @@ jobs: verify: runs-on: ubuntu-latest steps: + - name: Harden the runner (Audit all outbound calls) + uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2 + with: + egress-policy: audit + - uses: actions/checkout@v3 - name: Read .nvmrc run: echo ::set-output name=NVMRC::$(cat .nvmrc) @@ -33,6 +38,11 @@ jobs: needs: verify runs-on: ubuntu-latest steps: + - name: Harden the runner (Audit all outbound calls) + uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2 + with: + egress-policy: audit + - uses: actions/checkout@v3 - name: Read .nvmrc run: echo ::set-output name=NVMRC::$(cat .nvmrc)