-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: dependency pinning and auditing (#3449)
* chore: run audit in CI * chore: pin dependencies * chore: changeset * chore: pin tilde deps * chore: fix changeset * chore: fix workspace versions * chore: regen lock * chore: remove audit * chore: update changeset Co-authored-by: Peter Smith <[email protected]> * chore: add audit workflow * chore: changeset * chore: worflow check * chore: rebuild * chore: rebuild * chore: test audit * chore: disable audit --------- Co-authored-by: Peter Smith <[email protected]>
- Loading branch information
1 parent
e8a8c71
commit 12e801e
Showing
33 changed files
with
973 additions
and
2,894 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
"create-fuels": patch | ||
"@fuel-ts/transactions": patch | ||
"@fuel-ts/abi-typegen": patch | ||
"@fuel-ts/abi-coder": patch | ||
"@fuel-ts/contract": patch | ||
"@fuel-ts/versions": patch | ||
"@fuel-ts/account": patch | ||
"@fuel-ts/address": patch | ||
"@fuel-ts/program": patch | ||
"@fuel-ts/crypto": patch | ||
"@fuel-ts/hasher": patch | ||
"@fuel-ts/logger": patch | ||
"@fuel-ts/merkle": patch | ||
"fuels": patch | ||
"@fuel-ts/utils": patch | ||
"@fuel-ts/math": patch | ||
--- | ||
|
||
chore: dependency pinning and auditing |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: "Audit" | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
audit: | ||
if: false | ||
# if: startsWith(github.head_ref, 'changeset-release') | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: CI Setup | ||
uses: ./.github/actions/ci-setup | ||
|
||
- name: Audit | ||
run: pnpm audit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,6 @@ | |
"license": "ISC", | ||
"devDependencies": { | ||
"fuels": "workspace:*", | ||
"typedoc": "^0.26.3" | ||
"typedoc": "0.26.3" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,6 @@ | |
}, | ||
"license": "Apache-2.0", | ||
"dependencies": { | ||
"node-fetch": "^3.3.2" | ||
"node-fetch": "3.3.2" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,6 @@ | |
}, | ||
"license": "Apache-2.0", | ||
"dependencies": { | ||
"node-fetch": "^3.3.2" | ||
"node-fetch": "3.3.2" | ||
} | ||
} |
Oops, something went wrong.