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 windows from 0.58.0 to 0.59.0 in the dependencies group #223

Merged
merged 4 commits into from
Feb 3, 2025
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
4 changes: 2 additions & 2 deletions .github/workflows/autofix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
protobuf:
runs-on: macos-latest
steps:
- uses: mhils/workflows/checkout@v16
- uses: mhils/workflows/checkout@v17
- run: brew install swift-protobuf
- run: cargo install protoc-gen-prost
- run: protoc --proto_path=./src/ipc/ mitmproxy_ipc.proto
Expand All @@ -36,7 +36,7 @@ jobs:
- os: macos-latest
- os: ubuntu-latest
steps:
- uses: mhils/workflows/checkout@v16
- uses: mhils/workflows/checkout@v17
- uses: ./.github/actions/setup
with:
rust-version: ${{ env.MSRV }}
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
env:
RUSTFLAGS: ${{ matrix.rust == 'nightly' && '-Zpanic_abort_tests -C panic=abort' || '' }}
steps:
- uses: mhils/workflows/checkout@v16
- uses: mhils/workflows/checkout@v17
- uses: ./.github/actions/setup
with:
rust-version: ${{ matrix.rust }}
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
runs-on: ${{ matrix.os }}
name: build mitmproxy-rs (${{ matrix.name }})
steps:
- uses: mhils/workflows/checkout@v16
- uses: mhils/workflows/checkout@v17
- uses: ./.github/actions/setup
with:
extra-targets: ${{ matrix.target }}
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
build-macos-app:
runs-on: macos-latest
steps:
- uses: mhils/workflows/checkout@v16
- uses: mhils/workflows/checkout@v17
- if: ${{ !startsWith(github.ref, 'refs/tags/') }} # harden against cache poisoning
uses: actions/cache@v4
id: cache-app
Expand All @@ -141,7 +141,7 @@ jobs:
runs-on: windows-latest
name: build mitmproxy-windows
steps:
- uses: mhils/workflows/checkout@v16
- uses: mhils/workflows/checkout@v17
- uses: ./.github/actions/setup
- uses: install-pinned/build@80919007c59a8977ba4eedf1f3234e73f674aa2e

Expand All @@ -158,7 +158,7 @@ jobs:
needs: build-macos-app
runs-on: macos-latest
steps:
- uses: mhils/workflows/checkout@v16
- uses: mhils/workflows/checkout@v17
- uses: ./.github/actions/setup
with:
extra-targets: aarch64-apple-darwin x86_64-apple-darwin
Expand Down Expand Up @@ -199,7 +199,7 @@ jobs:
args: --compatibility manylinux2014 --zig -i 3.13
runs-on: ${{ matrix.os }}
steps:
- uses: mhils/workflows/checkout@v16
- uses: mhils/workflows/checkout@v17
- uses: ./.github/actions/setup
- name: Install maturin[zig] from PyPI
uses: install-pinned/maturin-with-zig@68c027568b7d08df7bc3c52476ae28d1d2d787f5
Expand All @@ -217,7 +217,7 @@ jobs:
needs: build-linux-wheel
runs-on: ubuntu-latest
steps:
- uses: mhils/workflows/checkout@v16
- uses: mhils/workflows/checkout@v17
- uses: ./.github/actions/setup
- uses: actions/download-artifact@v4
with:
Expand All @@ -234,12 +234,12 @@ jobs:
- build-windows-wheel
- build-linux-wheel
- build-macos-wheel
uses: mhils/workflows/.github/workflows/alls-green.yml@v16
uses: mhils/workflows/.github/workflows/alls-green.yml@v17
with:
jobs: ${{ toJSON(needs) }}

deploy:
uses: mhils/workflows/.github/workflows/python-deploy.yml@v16
uses: mhils/workflows/.github/workflows/python-deploy.yml@v17
needs: check
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
steps:
# TODO: This should ideally just reuse the main CI artifacts.
- uses: mhils/workflows/checkout@v16
- uses: mhils/workflows/checkout@v17
- uses: ./.github/actions/setup
- uses: install-pinned/maturin-with-zig@68c027568b7d08df7bc3c52476ae28d1d2d787f5
- uses: install-pinned/mypy@2b552bed479e3f7065314667b670f7303619e989
Expand Down
109 changes: 86 additions & 23 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ socket2 = "0.5.8"
boringtun = { git = 'https://github.com/cloudflare/boringtun', rev = 'e3252d9c4f4c8fc628995330f45369effd4660a1' }

[target.'cfg(windows)'.dependencies.windows]
version = "0.58.0"
version = "0.59.0"
features = [
"Win32_Foundation",
"Win32_Graphics_Dwm",
Expand Down
Loading