Skip to content

Commit

Permalink
Address more CI security warnings (#5302)
Browse files Browse the repository at this point in the history
  • Loading branch information
robertbastian authored Jul 25, 2024
1 parent 007c2df commit f2bcba5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/artifacts-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ jobs:
run: |
cd ffi/npm
make lib/index.mjs
npm install typedoc
npm install typedoc@0.26.5 --exact
node_modules/typedoc/bin/typedoc lib/index.d.ts --out docs --readme ../../tutorials/js.md --basePath lib
cd ../..
Expand Down Expand Up @@ -490,7 +490,7 @@ jobs:
# Job-specific dependencies
- name: Install npm tools
run: |
npm install -g wasm-opt
npm install -g wasm-opt@1.4.0 --exact
# Actual job
- name: Build wasm executables
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ on:
# Run beta slightly later
- cron: '1 14 * * *'

permissions:
contents: read

concurrency:
# Allow one run at a time for PRs, but multiple for other invocations
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ on:
push:
branches: [ main ]

permissions:
contents: read

jobs:
test:

Expand Down

0 comments on commit f2bcba5

Please sign in to comment.