Skip to content

Commit bd5c1bc

Browse files
Bump the dependencies group across 1 directory with 6 updates (#302)
Bumps the dependencies group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [autofix-ci/action](https://github.com/autofix-ci/action) | `1.3.2` | `1.3.3` | | [install-pinned/maturin-with-zig](https://github.com/install-pinned/maturin-with-zig) | `f2d528f09a3bbfb659c9959647d05c64874401d8` | `fdb93c6d7afba2f90597148c3a7f56d9d9267daa` | | [install-pinned/maturin](https://github.com/install-pinned/maturin) | `2b1e63c9d1c75642660f559ebf5dacab346d0555` | `cf91d4f1b862e5f08d2706f10e270b1faec1be7e` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `6` | `7` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `7` | `8` | | [actions/deploy-pages](https://github.com/actions/deploy-pages) | `4` | `5` | Updates `autofix-ci/action` from 1.3.2 to 1.3.3 - [Release notes](https://github.com/autofix-ci/action/releases) - [Commits](autofix-ci/action@635ffb0...7a166d7) Updates `install-pinned/maturin-with-zig` from f2d528f09a3bbfb659c9959647d05c64874401d8 to fdb93c6d7afba2f90597148c3a7f56d9d9267daa - [Release notes](https://github.com/install-pinned/maturin-with-zig/releases) - [Commits](install-pinned/maturin-with-zig@f2d528f...fdb93c6) Updates `install-pinned/maturin` from 2b1e63c9d1c75642660f559ebf5dacab346d0555 to cf91d4f1b862e5f08d2706f10e270b1faec1be7e - [Release notes](https://github.com/install-pinned/maturin/releases) - [Commits](install-pinned/maturin@2b1e63c...cf91d4f) Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v6...v7) Updates `actions/download-artifact` from 7 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v7...v8) Updates `actions/deploy-pages` from 4 to 5 - [Release notes](https://github.com/actions/deploy-pages/releases) - [Commits](actions/deploy-pages@v4...v5) --- updated-dependencies: - dependency-name: autofix-ci/action dependency-version: 1.3.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: install-pinned/maturin-with-zig dependency-version: fdb93c6d7afba2f90597148c3a7f56d9d9267daa dependency-type: direct:production dependency-group: dependencies - dependency-name: install-pinned/maturin dependency-version: cf91d4f1b862e5f08d2706f10e270b1faec1be7e dependency-type: direct:production dependency-group: dependencies - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/deploy-pages dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent f69817f commit bd5c1bc

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

.github/workflows/autofix.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
--prost_opt="flat_output_dir=true"
2929
# --swift_out=./mitmproxy-macos/redirector/ipc
3030
- run: cargo fmt --all
31-
- uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27
31+
- uses: autofix-ci/action@7a166d7532b277f34e16238930461bf77f9d7ed8
3232

3333
rustfmt:
3434
runs-on: ${{ matrix.os }}
@@ -53,4 +53,4 @@ jobs:
5353
- run: cargo fmt --all
5454
- run: git checkout src/ipc/mitmproxy_ipc.rs
5555

56-
- uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27
56+
- uses: autofix-ci/action@7a166d7532b277f34e16238930461bf77f9d7ed8

.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@f2d528f09a3bbfb659c9959647d05c64874401d8
94+
uses: install-pinned/maturin-with-zig@fdb93c6d7afba2f90597148c3a7f56d9d9267daa
9595
- if: runner.os != 'Linux'
9696
name: Install maturin from PyPI
97-
uses: install-pinned/maturin@2b1e63c9d1c75642660f559ebf5dacab346d0555
97+
uses: install-pinned/maturin@cf91d4f1b862e5f08d2706f10e270b1faec1be7e
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@v6
110+
- uses: actions/upload-artifact@v7
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@v6
135+
- uses: actions/upload-artifact@v7
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@v6
151+
- uses: actions/upload-artifact@v7
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@v7
171+
- uses: actions/download-artifact@v8
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@v6
177+
- uses: actions/upload-artifact@v7
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@f2d528f09a3bbfb659c9959647d05c64874401d8
198+
uses: install-pinned/maturin-with-zig@fdb93c6d7afba2f90597148c3a7f56d9d9267daa
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@v6
203+
- uses: actions/upload-artifact@v7
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@v7
214+
- uses: actions/download-artifact@v8
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@f2d528f09a3bbfb659c9959647d05c64874401d8
25+
- uses: install-pinned/maturin-with-zig@fdb93c6d7afba2f90597148c3a7f56d9d9267daa
2626
- uses: install-pinned/mypy@75779f141592e4909d64e13f8a1861f06aa9cd8d
2727
- uses: install-pinned/pdoc@69ba59f9699df21e1026110af4ec6b10a98cf5cd
2828

@@ -52,4 +52,4 @@ jobs:
5252
url: ${{ steps.deployment.outputs.page_url }}
5353
steps:
5454
- id: deployment
55-
uses: actions/deploy-pages@v4
55+
uses: actions/deploy-pages@v5

0 commit comments

Comments
 (0)