Skip to content

Commit 64bd30a

Browse files
Bump the dependencies group with 3 updates (#292)
Bumps the dependencies group with 3 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/cache](https://github.com/actions/cache) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v6...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/download-artifact dependency-version: '7' 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 cfe8c63 commit 64bd30a

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -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@v5
110+
- uses: actions/upload-artifact@v6
111111
with:
112112
name: wheels-${{ matrix.name }}
113113
path: target/wheels
@@ -117,7 +117,7 @@ jobs:
117117
steps:
118118
- uses: mhils/workflows/checkout@5b6540d578f48644ffa5e955cedadc81034cb7d8 # v18.0
119119
- if: ${{ !startsWith(github.ref, 'refs/tags/') }} # harden against cache poisoning
120-
uses: actions/cache@v4
120+
uses: actions/cache@v5
121121
id: cache-app
122122
with:
123123
path: mitmproxy-macos/redirector/dist/
@@ -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@v5
135+
- uses: actions/upload-artifact@v6
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@v5
151+
- uses: actions/upload-artifact@v6
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@v6
171+
- uses: actions/download-artifact@v7
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@v5
177+
- uses: actions/upload-artifact@v6
178178
with:
179179
name: wheels-os-macos
180180
path: target/wheels
@@ -200,7 +200,7 @@ jobs:
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@v5
203+
- uses: actions/upload-artifact@v6
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@v6
214+
- uses: actions/download-artifact@v7
215215
with:
216216
name: wheels-os-linux-x86_64
217217
path: target/wheels

0 commit comments

Comments
 (0)