Skip to content

fix(security/unknown): update module golang.org/x/sys to v0.44.0 [security] #273

fix(security/unknown): update module golang.org/x/sys to v0.44.0 [security]

fix(security/unknown): update module golang.org/x/sys to v0.44.0 [security] #273

Workflow file for this run

name: Test & Build
on:
pull_request:
push:
branches:
- main
defaults:
run:
shell: bash
working-directory: ./
permissions:
contents: read
env:
DO_NOT_TRACK: 1
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@8d3c67de8e2fe68ef647c8db1e6a09f647780f40 # v2.19.0
with:
egress-policy: audit
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
repository: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
ref: ${{ github.event.pull_request.head.ref || github.ref }}
fetch-depth: 1
persist-credentials: false
- name: Setup NodeJS environment
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version-file: .nvmrc
cache: yarn
- name: Install frontend dependencies
run: yarn install --frozen-lockfile;
- name: Spellcheck
run: yarn spellcheck;
- name: Setup Go environment
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
with:
go-version-file: 'go.work'
cache-dependency-path: "**/*.sum"
- name: Validate environment
run: |
echo "-------- node version -----"
node --version
echo "-------- npm version -----"
npm --version
echo "-------- yarn version -----"
yarn --version
echo "-------- go version -----"
go version
- name: Test
run: yarn test