Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 2 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ updates:
directory: "/"
schedule:
interval: "weekly"
cooldown:
default-days: 7
22 changes: 11 additions & 11 deletions .github/workflows/contracts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@

steps:
- name: Checkout sources
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: recursive
persist-credentials: false

- name: Install Foundry
uses: foundry-rs/foundry-toolchain@50d5a8956f2e319df19e6b57539d7e2acb9f8c1e # v1.5.0
uses: foundry-rs/foundry-toolchain@8b0419c685ef46cb79ec93fbdc131174afceb730 # v1.6.0
with:
version: nightly

Expand All @@ -52,7 +52,7 @@
run: echo "::set-output name=dir::$(yarn cache dir)"

- name: Cache yarn dependencies
uses: actions/cache@v4
uses: actions/cache@v5
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
Expand All @@ -62,7 +62,7 @@
- name: Cache node_modules
id: npm_cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: node_modules
key: node_modules-${{ hashFiles('yarn.lock') }}
Expand All @@ -84,7 +84,7 @@
run : lcov --rc branch_coverage=1 --remove ./lcov.info -o ./lcov.info.pruned 'src/mocks/*' 'src/test/*' 'scripts/*' 'node_modules/*' 'lib/*' --ignore-errors unused,unused

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
Expand All @@ -98,7 +98,7 @@

steps:
- name: Checkout sources
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: recursive
persist-credentials: false
Expand All @@ -113,7 +113,7 @@
run: echo "::set-output name=dir::$(yarn cache dir)"

- name: Cache yarn dependencies
uses: actions/cache@v4
uses: actions/cache@v5
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
Expand All @@ -123,7 +123,7 @@
- name: Cache node_modules
id: npm_cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: node_modules
key: node_modules-${{ hashFiles('yarn.lock') }}
Expand All @@ -147,7 +147,7 @@
security-events: write

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
submodules: recursive
persist-credentials: false
Expand All @@ -158,7 +158,7 @@

- run: yarn install --frozen-lockfile

- uses: foundry-rs/foundry-toolchain@50d5a8956f2e319df19e6b57539d7e2acb9f8c1e # v1.5.0
- uses: foundry-rs/foundry-toolchain@8b0419c685ef46cb79ec93fbdc131174afceb730 # v1.6.0
with:
version: nightly

Expand Down Expand Up @@ -186,7 +186,7 @@
--json slither-report.json \
--markdown-root slither-report.md
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: slither-static-analysis
path: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docker-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

steps:
- name: Check out repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
submodules: true
persist-credentials: false
Expand All @@ -21,7 +21,7 @@
run: git submodule update --init --recursive

- name: Set up QEMU
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0
uses: docker/setup-qemu-action@c7c53464625b32c7a7e944ae62b3e17d2b600130 # v3.7.0

- name: Setup Node.js environment
uses: actions/setup-node@v6
Expand All @@ -33,7 +33,7 @@
run: npm install

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
with:
cache-binary: false

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/zizmor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@

steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
persist-credentials: false

- name: Install the latest version of uv
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7.1.2
uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6

- name: Run zizmor
run: uvx zizmor --format sarif . > results.sarif
Expand Down
Loading