Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
* @anishnaik @bsamuels453 @james-miller-93 @Jaime-Iglesias
/program-analysis/echidna/ @elopez
/learn_evm/ @bohendo
3 changes: 2 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ jobs:
with:
fetch-depth: 0
submodules: true
persist-credentials: false
- name: Install mdbook
run: |
cargo install --git https://github.com/montyly/mdBook.git mdbook || true
cargo install --git https://github.com/trail-of-forks/mdBook.git --branch building-secure-contracts mdbook || true
- name: Build artifacts
run: mdbook build
- name: Upload artifact
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/echidna.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ on:
# run CI every day even if no PRs/merges occur
- cron: "0 12 * * *"

permissions:
contents: read

jobs:
tests:
name: ${{ matrix.name }}
Expand Down Expand Up @@ -129,6 +132,8 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v5
with:
persist-credentials: false

- name: Checkout Damn Vulnerable DeFi solutions
uses: actions/checkout@v5
Expand All @@ -137,6 +142,7 @@ jobs:
repository: crytic/damn-vulnerable-defi-echidna
ref: solutions
path: ${{ matrix.workdir }}
persist-credentials: false

- name: Set up Nodejs
uses: actions/setup-node@v5
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/lint_format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
- master
pull_request:

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -15,6 +18,7 @@ jobs:
uses: actions/checkout@v5
with:
submodules: true
persist-credentials: false

- name: Set up Node.js
uses: actions/setup-node@v5
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/lint_links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,17 @@ on:
# run CI at 09:00 every Tuesday even if no PRs/merges occur
- cron: "0 9 * * 2"

permissions:
contents: read

jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
submodules: recursive
persist-credentials: false
- uses: tcort/github-action-markdown-link-check@v1
with:
use-quiet-mode: "yes"
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/manticore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,16 @@ on:
# run CI every day even if no PRs/merges occur
- cron: "0 12 * * *"

permissions:
contents: read

jobs:
tests:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v5
with:
persist-credentials: false
- name: Set up Python 3.8
uses: actions/setup-python@v6
with:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/medusa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ on:
# run CI every day even if no PRs/merges occur
- cron: "0 12 * * *"

permissions:
contents: read

jobs:
tests:
name: ${{ matrix.name }}
Expand Down Expand Up @@ -125,6 +128,8 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v5
with:
persist-credentials: false

- name: Checkout Damn Vulnerable DeFi solutions
uses: actions/checkout@v5
Expand All @@ -133,6 +138,7 @@ jobs:
repository: crytic/damn-vulnerable-defi-echidna
ref: solutions
path: ${{ matrix.workdir }}
persist-credentials: false

- name: Set up Nodejs
uses: actions/setup-node@v5
Expand Down
3 changes: 0 additions & 3 deletions CODEOWNERS

This file was deleted.

6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ We utilize `mdbook` to generate [secure-contracts.com](https://secure-contracts.

To run it locally:

```
cargo install --git https://github.com/montyly/mdBook.git mdbook
```bash
cargo install --git https://github.com/trail-of-forks/mdBook.git --branch building-secure-contracts mdbook
mdbook build
```

Note: We use https://github.com/montyly/mdBook.git, which contains https://github.com/rust-lang/mdBook/pull/1584.
Note: We use https://github.com/trail-of-forks/mdBook.git, which contains https://github.com/rust-lang/mdBook/pull/1584.
Loading