Skip to content

Commit

Permalink
Merge pull request #692 from GSA-TTS/require_hashes
Browse files Browse the repository at this point in the history
Require package hashes for pip and npm
  • Loading branch information
debjudy authored Dec 13, 2024
2 parents c8a90e8 + 22f7e36 commit 856ee0b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pa11y.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
node-version: "18"

- name: Install dependencies
run: npm install --production=false && pip install -r requirements.txt
run: npm ci --production=false && pip install --require-hashes -r requirements.txt

- name: Setup custom variables
id: customvars
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
node-version: "${{ steps.nvm.outputs.NVMRC }}"

- name: Install NPM dependencies
run: npm install
run: npm ci

- name: Build site
run: npm run build
Expand Down

0 comments on commit 856ee0b

Please sign in to comment.