Skip to content

Commit c076d0a

Browse files
Bump the dependencies group with 5 updates (mitmproxy#279)
* Bump the dependencies group with 5 updates Bumps the dependencies group with 5 updates: | Package | From | To | | --- | --- | --- | | [install-pinned/maturin-with-zig](https://github.com/install-pinned/maturin-with-zig) | `17e01ecf067c35a61d38260946eb540d1183b4c6` | `f417792a014422c34a0851908384b546160fb413` | | [install-pinned/maturin](https://github.com/install-pinned/maturin) | `a6142e16d31c3112487eabfb98d9cda8f08ba35d` | `557b6a12864b2632453a588330184ce7233dc6cb` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4` | `5` | | [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact) | `3` | `4` | | [actions/checkout](https://github.com/actions/checkout) | `4` | `5` | Updates `install-pinned/maturin-with-zig` from 17e01ecf067c35a61d38260946eb540d1183b4c6 to f417792a014422c34a0851908384b546160fb413 - [Release notes](https://github.com/install-pinned/maturin-with-zig/releases) - [Commits](install-pinned/maturin-with-zig@17e01ec...f417792) Updates `install-pinned/maturin` from a6142e16d31c3112487eabfb98d9cda8f08ba35d to 557b6a12864b2632453a588330184ce7233dc6cb - [Release notes](https://github.com/install-pinned/maturin/releases) - [Commits](install-pinned/maturin@a6142e1...557b6a1) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) Updates `actions/upload-pages-artifact` from 3 to 4 - [Release notes](https://github.com/actions/upload-pages-artifact/releases) - [Commits](actions/upload-pages-artifact@v3...v4) Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: install-pinned/maturin-with-zig dependency-version: f417792a014422c34a0851908384b546160fb413 dependency-type: direct:production dependency-group: dependencies - dependency-name: install-pinned/maturin dependency-version: 557b6a12864b2632453a588330184ce7233dc6cb dependency-type: direct:production dependency-group: dependencies - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/upload-pages-artifact dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> * [autofix.ci] apply automated fixes --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
1 parent 95740f2 commit c076d0a

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 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@17e01ecf067c35a61d38260946eb540d1183b4c6
94+
uses: install-pinned/maturin-with-zig@f417792a014422c34a0851908384b546160fb413
9595
- if: runner.os != 'Linux'
9696
name: Install maturin from PyPI
97-
uses: install-pinned/maturin@a6142e16d31c3112487eabfb98d9cda8f08ba35d
97+
uses: install-pinned/maturin@557b6a12864b2632453a588330184ce7233dc6cb
9898

9999
- if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
100100
run: python .github/scripts/pin-versions.py
@@ -168,7 +168,7 @@ 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@v4
171+
- uses: actions/download-artifact@v5
172172
with:
173173
name: macos-app
174174
path: mitmproxy-macos/redirector/dist/
@@ -195,7 +195,7 @@ 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@17e01ecf067c35a61d38260946eb540d1183b4c6
198+
uses: install-pinned/maturin-with-zig@f417792a014422c34a0851908384b546160fb413
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
@@ -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@v4
214+
- uses: actions/download-artifact@v5
215215
with:
216216
name: wheels-os-linux-x86_64
217217
path: target/wheels

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
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@17e01ecf067c35a61d38260946eb540d1183b4c6
25+
- uses: install-pinned/maturin-with-zig@f417792a014422c34a0851908384b546160fb413
2626
- uses: install-pinned/mypy@75779f141592e4909d64e13f8a1861f06aa9cd8d
2727
- uses: install-pinned/pdoc@69ba59f9699df21e1026110af4ec6b10a98cf5cd
2828

@@ -34,7 +34,7 @@ jobs:
3434

3535
- run: pdoc -o docs/ mitmproxy_rs
3636

37-
- uses: actions/upload-pages-artifact@v3
37+
- uses: actions/upload-pages-artifact@v4
3838
with:
3939
path: docs/
4040

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
environment: deploy
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424
with:
2525
token: ${{ secrets.GH_PUSH_TOKEN }} # this token works to push to the protected main branch.
2626
persist-credentials: true # needed by release tool

0 commit comments

Comments
 (0)