Skip to content

Commit 544dba1

Browse files
Bump the dependencies group with 4 updates (mitmproxy#286)
Bumps the dependencies group with 4 updates: [install-pinned/maturin-with-zig](https://github.com/install-pinned/maturin-with-zig), [install-pinned/maturin](https://github.com/install-pinned/maturin), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `install-pinned/maturin-with-zig` from f417792a014422c34a0851908384b546160fb413 to c69b784f32c6a34427a937c4887c928284a6d4cc - [Release notes](https://github.com/install-pinned/maturin-with-zig/releases) - [Commits](install-pinned/maturin-with-zig@f417792...c69b784) Updates `install-pinned/maturin` from 557b6a12864b2632453a588330184ce7233dc6cb to 9f07e24f8a6ddec5e728f9a6ce2fd377213a9e4a - [Release notes](https://github.com/install-pinned/maturin/releases) - [Commits](install-pinned/maturin@557b6a1...9f07e24) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) --- updated-dependencies: - dependency-name: install-pinned/maturin-with-zig dependency-version: c69b784f32c6a34427a937c4887c928284a6d4cc dependency-type: direct:production dependency-group: dependencies - dependency-name: install-pinned/maturin dependency-version: 9f07e24f8a6ddec5e728f9a6ce2fd377213a9e4a dependency-type: direct:production dependency-group: dependencies - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 2c41b2c commit 544dba1

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,10 @@ jobs:
9191

9292
- if: runner.os == 'Linux'
9393
name: Install maturin[zig] from PyPI
94-
uses: install-pinned/maturin-with-zig@f417792a014422c34a0851908384b546160fb413
94+
uses: install-pinned/maturin-with-zig@c69b784f32c6a34427a937c4887c928284a6d4cc
9595
- if: runner.os != 'Linux'
9696
name: Install maturin from PyPI
97-
uses: install-pinned/maturin@557b6a12864b2632453a588330184ce7233dc6cb
97+
uses: install-pinned/maturin@9f07e24f8a6ddec5e728f9a6ce2fd377213a9e4a
9898

9999
- if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
100100
run: python .github/scripts/pin-versions.py
@@ -107,7 +107,7 @@ jobs:
107107
- if: contains(matrix.args, 'sdist')
108108
run: pip install --no-dependencies target/wheels/*.tar.gz
109109

110-
- uses: actions/upload-artifact@v4
110+
- uses: actions/upload-artifact@v5
111111
with:
112112
name: wheels-${{ matrix.name }}
113113
path: target/wheels
@@ -132,7 +132,7 @@ jobs:
132132
APPLE_PROVISIONING_PROFILE_EXT: ${{ secrets.APPLE_PROVISIONING_PROFILE_EXT }}
133133
APPLE_CERTIFICATE: ${{ secrets.APPLE_CERTIFICATE }}
134134

135-
- uses: actions/upload-artifact@v4
135+
- uses: actions/upload-artifact@v5
136136
with:
137137
name: macos-app
138138
path: mitmproxy-macos/redirector/dist/
@@ -148,7 +148,7 @@ jobs:
148148
- run: cargo build --release --package windows-redirector
149149

150150
- run: python -m build --wheel ./mitmproxy-windows --outdir target/wheels/
151-
- uses: actions/upload-artifact@v4
151+
- uses: actions/upload-artifact@v5
152152
with:
153153
name: wheels-os-windows
154154
path: target/wheels
@@ -168,13 +168,13 @@ jobs:
168168
cargo build --release --package macos-certificate-truster --target x86_64-apple-darwin
169169
cargo build --release --package macos-certificate-truster --target aarch64-apple-darwin
170170
lipo -create -output target/release/macos-certificate-truster target/x86_64-apple-darwin/release/macos-certificate-truster target/aarch64-apple-darwin/release/macos-certificate-truster
171-
- uses: actions/download-artifact@v5
171+
- uses: actions/download-artifact@v6
172172
with:
173173
name: macos-app
174174
path: mitmproxy-macos/redirector/dist/
175175

176176
- run: python -m build --wheel ./mitmproxy-macos --outdir target/wheels/
177-
- uses: actions/upload-artifact@v4
177+
- uses: actions/upload-artifact@v5
178178
with:
179179
name: wheels-os-macos
180180
path: target/wheels
@@ -195,12 +195,12 @@ jobs:
195195
- uses: mhils/workflows/checkout@5b6540d578f48644ffa5e955cedadc81034cb7d8 # v18.0
196196
- uses: ./.github/actions/setup
197197
- name: Install maturin[zig] from PyPI
198-
uses: install-pinned/maturin-with-zig@f417792a014422c34a0851908384b546160fb413
198+
uses: install-pinned/maturin-with-zig@c69b784f32c6a34427a937c4887c928284a6d4cc
199199
- run: maturin build --release ${{ matrix.args }}
200200
working-directory: ./mitmproxy-linux
201201
- run: test -f target/wheels/*-py3-none-*.whl # ensure we have a universal wheel
202202

203-
- uses: actions/upload-artifact@v4
203+
- uses: actions/upload-artifact@v5
204204
with:
205205
name: wheels-os-${{ matrix.name }}
206206
path: target/wheels
@@ -211,7 +211,7 @@ jobs:
211211
steps:
212212
- uses: mhils/workflows/checkout@5b6540d578f48644ffa5e955cedadc81034cb7d8 # v18.0
213213
- uses: ./.github/actions/setup
214-
- uses: actions/download-artifact@v5
214+
- uses: actions/download-artifact@v6
215215
with:
216216
name: wheels-os-linux-x86_64
217217
path: target/wheels

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
# TODO: This should ideally just reuse the main CI artifacts.
2323
- uses: mhils/workflows/checkout@5b6540d578f48644ffa5e955cedadc81034cb7d8 # v18.0
2424
- uses: ./.github/actions/setup
25-
- uses: install-pinned/maturin-with-zig@f417792a014422c34a0851908384b546160fb413
25+
- uses: install-pinned/maturin-with-zig@c69b784f32c6a34427a937c4887c928284a6d4cc
2626
- uses: install-pinned/mypy@75779f141592e4909d64e13f8a1861f06aa9cd8d
2727
- uses: install-pinned/pdoc@69ba59f9699df21e1026110af4ec6b10a98cf5cd
2828

0 commit comments

Comments
 (0)