Skip to content

Update all dependencies and allowed-endpoints in CI, CD, Scorecards workflows #233

Update all dependencies and allowed-endpoints in CI, CD, Scorecards workflows

Update all dependencies and allowed-endpoints in CI, CD, Scorecards workflows #233

Workflow file for this run

name: CI
on:
push:
branches:
- main
- 'v*.[0-9]'
pull_request:
permissions: # added using https://github.com/step-security/secure-workflows
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09 # v2.5.1
with:
disable-sudo: true
egress-policy: block
allowed-endpoints: >
coveralls.io:443
github.com:443
registry.yarnpkg.com:443
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- name: Install modules
run: yarn
- name: Run tests
run: yarn test --coverage
- name: Coveralls
uses: coverallsapp/github-action@c203f016dd0ff7855ebef0ed852000c20c117148
with:
github-token: ${{ secrets.GITHUB_TOKEN }}