Skip to content

Commit c97214e

Browse files
committed
Merge remote-tracking branch 'origin/main' into galargh/main-v-next
2 parents 4b07993 + 83721d9 commit c97214e

File tree

102 files changed

+2966
-3610
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+2966
-3610
lines changed

.github/workflows/LATEST_DEPENDENCY_VERSIONS.yml

+2-8
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,7 @@ jobs:
1414
runs-on: ${{ matrix.system }}
1515
steps:
1616
- uses: actions/checkout@v4
17-
- uses: pnpm/action-setup@v4
18-
with:
19-
version: 9
20-
- uses: actions/setup-node@v4
21-
with:
22-
node-version: 18
23-
cache: "pnpm"
17+
- uses: ./.github/actions/setup-env
2418
- name: Delete pnpm-lock.yaml
2519
run: "rm pnpm-lock.yaml"
2620
- name: Install
@@ -34,7 +28,7 @@ jobs:
3428
run: pnpm test || (echo "===== Retry =====" && pnpm test)
3529
- name: Notify failures
3630
if: failure()
37-
uses: slackapi/slack-github-action@v1.18.0
31+
uses: slackapi/slack-github-action@70cd7be8e40a46e8b0eced40b0de447bdb42f68e # v1.26.0
3832
with:
3933
payload: |
4034
{

.github/workflows/add-issue-to-project.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
add-to-project:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/add-to-project@v0.4.0
13+
- uses: actions/add-to-project@244f685bbc3b7adfa8466e08b698b5577571133e # v1.0.2
1414
with:
1515
project-url: https://github.com/orgs/NomicFoundation/projects/4
1616
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}

.github/workflows/add-label-to-new-issue.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
issues: write
1414
pull-requests: write
1515
steps:
16-
- uses: actions/github-script@v6
16+
- uses: actions/github-script@v7
1717
with:
1818
script: |
1919
const issue = await github.rest.issues.get({

.github/workflows/autoassign-issues.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
permissions:
1111
issues: write
1212
steps:
13-
- uses: actions/github-script@v6
13+
- uses: actions/github-script@v7
1414
with:
1515
script: |
1616
// each user has a chance of (p - (previousP ?? 0)) to be assigned

.github/workflows/autoassign-prs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
permissions:
1111
pull-requests: write
1212
steps:
13-
- uses: actions/github-script@v6
13+
- uses: actions/github-script@v7
1414
with:
1515
script: |
1616
const externalPrTriager = "kanej";

.github/workflows/check-changeset-added.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
# don't run this check in the changesets PR
2222
if: github.head_ref != 'changeset-release/main'
2323
steps:
24-
- uses: actions/github-script@v6
24+
- uses: actions/github-script@v7
2525
with:
2626
script: |
2727
const pullNumber = context.issue.number;

.github/workflows/check-docs-site.yml

+12-6
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,14 @@ name: Check Docs Site
33
on:
44
push:
55
branches:
6-
- "**"
6+
- main
77
paths:
8+
- ".github/workflows/check-docs-site.yml"
9+
- "docs/**"
10+
- "packages/**"
11+
pull_request:
12+
paths:
13+
- ".github/workflows/check-docs-site.yml"
814
- "docs/**"
915
- "packages/**"
1016
workflow_dispatch:
@@ -29,8 +35,8 @@ jobs:
2935
- name: Install
3036
run: pnpm install --frozen-lockfile --prefer-offline
3137
- name: Install Docs
32-
run: cd docs && pnpm install --frozen-lockfile --prefer-offline
33-
- name: lint
34-
run: cd docs && pnpm lint
35-
- name: Build
36-
run: cd docs && pnpm build
38+
working-directory: docs/
39+
run: pnpm install --frozen-lockfile --prefer-offline
40+
- name: Build Docs
41+
working-directory: docs/
42+
run: pnpm build
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Close Stale Issues
2+
3+
on:
4+
schedule:
5+
- cron: "0 0 * * *" # Runs daily at midnight UTC
6+
workflow_dispatch:
7+
8+
jobs:
9+
stale:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Close stale issues
13+
uses: actions/stale@v9
14+
with:
15+
repo-token: ${{ secrets.GITHUB_TOKEN }}
16+
stale-issue-message: "This issue has been automatically closed due to inactivity. If you still need help, please reopen the issue and provide the requested information."
17+
days-before-stale: 7
18+
days-before-close: 7
19+
only-labels: "status:needs-more-info"
20+
exempt-issue-labels: "status:do-not-close"

.github/workflows/comment-on-linter-error.yml

-54
This file was deleted.

.github/workflows/e2e-tests.yml

+3-8
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name: E2E tests
33
on:
44
push:
55
branches:
6-
- "main"
6+
- main
77
pull_request:
88
branches:
9-
- "main"
9+
- main
1010

1111
jobs:
1212
run-e2e:
@@ -29,12 +29,7 @@ jobs:
2929
IS_WINDOWS: ${{ matrix.os == 'windows-latest' }}
3030
steps:
3131
- uses: actions/checkout@v4
32-
- uses: pnpm/action-setup@v4
33-
with:
34-
version: 9
35-
- uses: actions/setup-node@v4
36-
with:
37-
node-version: 18
32+
- uses: ./.github/actions/setup-env
3833
- name: Run fixture-projects script
3934
run: |
4035
cd e2e

.github/workflows/hardhat-chai-matchers-ci.yml

-92
This file was deleted.

0 commit comments

Comments
 (0)