Skip to content

Commit 76f427d

Browse files
Bump the github-actions group with 3 updates
Bumps the github-actions group with 3 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [actions/cache](https://github.com/actions/cache). 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/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v6...v7) 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) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent f6207e6 commit 76f427d

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/python-tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
exit 1
110110
fi
111111
- name: Upload wheels
112-
uses: actions/upload-artifact@v5
112+
uses: actions/upload-artifact@v6
113113
with:
114114
name: wheels-linux-${{ matrix.platform.target }}
115115
path: dist
@@ -155,7 +155,7 @@ jobs:
155155
exit 1
156156
fi
157157
- name: Upload wheels
158-
uses: actions/upload-artifact@v5
158+
uses: actions/upload-artifact@v6
159159
with:
160160
name: wheels-musllinux-${{ matrix.platform.target }}
161161
path: dist
@@ -184,7 +184,7 @@ jobs:
184184
args: --release --out dist --find-interpreter
185185
sccache: false
186186
- name: Upload wheels
187-
uses: actions/upload-artifact@v5
187+
uses: actions/upload-artifact@v6
188188
with:
189189
name: wheels-windows-${{ matrix.platform.target }}
190190
path: dist
@@ -212,7 +212,7 @@ jobs:
212212
args: --release --out dist --find-interpreter
213213
sccache: false
214214
- name: Upload wheels
215-
uses: actions/upload-artifact@v5
215+
uses: actions/upload-artifact@v6
216216
with:
217217
name: wheels-macos-${{ matrix.platform.target }}
218218
path: dist
@@ -229,7 +229,7 @@ jobs:
229229
command: sdist
230230
args: --out dist
231231
- name: Upload sdist
232-
uses: actions/upload-artifact@v5
232+
uses: actions/upload-artifact@v6
233233
with:
234234
name: wheels-sdist
235235
path: dist
@@ -247,7 +247,7 @@ jobs:
247247
# Used to generate artifact attestation
248248
attestations: write
249249
steps:
250-
- uses: actions/download-artifact@v6
250+
- uses: actions/download-artifact@v7
251251
- name: Generate artifact attestation
252252
uses: actions/attest-build-provenance@v3
253253
with:

.github/workflows/rust-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
uses: actions-rust-lang/setup-rust-toolchain@v1
2121

2222
- name: Cache Rust dependencies
23-
uses: actions/cache@v4
23+
uses: actions/cache@v5
2424
with:
2525
path: |
2626
~/.cargo/registry

0 commit comments

Comments
 (0)