Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump the dependencies group with 10 updates #130

Closed
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/autofix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
timeout-minutes: 2
continue-on-error: true
# PyO3 wants recent Python on Windows.
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version-file: .github/python-version.txt

Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
timeout-minutes: 2
continue-on-error: true
# PyO3 wants recent Python on Windows.
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version-file: .github/python-version.txt

Expand Down Expand Up @@ -82,16 +82,16 @@ jobs:
- uses: Swatinem/rust-cache@3cf7f8cc28d1b4e7d01e3783be10a97d55d483c8 # v2.7.1
timeout-minutes: 2
continue-on-error: true
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version-file: .github/python-version.txt

- if: runner.os == 'Linux'
name: Install maturin[zig] from PyPI
uses: install-pinned/maturin-with-zig@1c81abaaee669d7c37cd893e1037216ecf5df7e0
uses: install-pinned/maturin-with-zig@7dc6082180bb4d3acd615d58c00156b7d444c772
- if: runner.os != 'Linux'
name: Install maturin from PyPI
uses: install-pinned/maturin@63688f9ac50926e464a1968e2383270d2d18c07c
uses: install-pinned/maturin@dfebcaa782a69944b584ec164e97fbbd09885352

- if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
run: python .github/scripts/pin-versions.py
Expand All @@ -104,7 +104,7 @@ jobs:
- if: contains(matrix.args, 'sdist')
run: pip install target/wheels/*.tar.gz

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: wheels
path: target/wheels
Expand All @@ -128,7 +128,7 @@ jobs:
APPLE_PROVISIONING_PROFILE_EXT: ${{ secrets.APPLE_PROVISIONING_PROFILE_EXT }}
APPLE_CERTIFICATE: ${{ secrets.APPLE_CERTIFICATE }}

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: macos-app
path: mitmproxy-macos/redirector/dist/
Expand Down Expand Up @@ -166,19 +166,19 @@ jobs:

# Download macOS app
- if: runner.os == 'macOS'
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: macos-app
path: mitmproxy-macos/redirector/dist/

# Build & upload wheel
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version-file: .github/python-version.txt
- name: Install build from PyPI
uses: install-pinned/build@8abfe6b59c77f639a26f11c0ce295f9940f7865f
uses: install-pinned/build@6921a57b43fbb0fd3bcc42465ec9b4f3630e0032
- run: python -m build --wheel ./mitmproxy-${{ matrix.os }} --outdir target/wheels/
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: wheels
path: target/wheels
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ jobs:
timeout-minutes: 2
continue-on-error: true
- name: Install maturin[zig] from PyPI
uses: install-pinned/maturin-with-zig@1c81abaaee669d7c37cd893e1037216ecf5df7e0
uses: install-pinned/maturin-with-zig@7dc6082180bb4d3acd615d58c00156b7d444c772
- name: Install mypy from PyPI
uses: install-pinned/mypy@5257e4e0636763f6fb849c6354a2ff13d645d3a9
uses: install-pinned/mypy@c2223951641cbb406fa8526d08f0690899f130e4
- name: Install pdoc from PyPI
uses: install-pinned/pdoc@1e3e54521769cb06a10c2c4479c682551d4c9dce
uses: install-pinned/pdoc@ab8a5be0e3510626455121b5daa646819e08f0d5

- run: maturin build
working-directory: ./mitmproxy-rs
Expand All @@ -38,7 +38,7 @@ jobs:

- run: pdoc -o docs/ mitmproxy_rs

- uses: actions/upload-pages-artifact@v2
- uses: actions/upload-pages-artifact@v3
with:
path: docs/

Expand All @@ -56,4 +56,4 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@v2
uses: actions/deploy-pages@v4
Loading