Skip to content

Commit 16da285

Browse files
author
Francis Labelle
committed
Upgrade to mitmproxy 10.1.5
2 parents 83b530c + bda9c4e commit 16da285

728 files changed

Lines changed: 44638 additions & 16647 deletions

File tree

Some content is hidden

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

.github/dependabot.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: github-actions
4+
directory: "/"
5+
schedule:
6+
interval: "monthly"
7+
groups:
8+
"github actions":
9+
patterns:
10+
- "*"
11+
- package-ecosystem: pip
12+
directory: "/"
13+
schedule:
14+
interval: "monthly"
15+
open-pull-requests-limit: 10

.github/node-version.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
14

.github/python-version.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.11

.github/workflows/autofix.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: autofix.ci
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches:
7+
- main
8+
9+
permissions:
10+
contents: read
11+
12+
jobs:
13+
autofix:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v4
17+
18+
- uses: install-pinned/ruff@0e35bc58bd73769469284df9e1f8898daeea8768
19+
- run: ruff --fix-only .
20+
- run: ruff format .
21+
22+
- name: Run prettier
23+
run: |
24+
npm ci
25+
npm run prettier
26+
working-directory: web
27+
28+
- uses: mhils/add-pr-ref-in-changelog@main
29+
30+
- uses: autofix-ci/action@d3e591514b99d0fca6779455ff8338516663f7cc

0 commit comments

Comments
 (0)