Skip to content

Commit 61e3312

Browse files
🤖 Bump the actions group with 4 updates
Bumps the actions group with 4 updates: [actions/cache](https://github.com/actions/cache), [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv). 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/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 `astral-sh/setup-uv` from 7.1.5 to 7.1.6 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](astral-sh/setup-uv@v7.1.5...v7.1.6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: astral-sh/setup-uv dependency-version: 7.1.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent ca1cfb6 commit 61e3312

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/big_endian.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
sudo apt install -y ninja-build gcc-${TOOLCHAIN_NAME} g++-${TOOLCHAIN_NAME} gfortran-${TOOLCHAIN_NAME}
6767
6868
- name: Cache docker container
69-
uses: actions/cache@v4
69+
uses: actions/cache@v5
7070
id: container-cache
7171
with:
7272
path: ~/docker_${{ matrix.BUILD_PROP[1] }}

.github/workflows/build_wheels.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
python -m cibuildwheel --output-dir wheelhouse
6262
working-directory: ./quaddtype
6363

64-
- uses: actions/upload-artifact@v5
64+
- uses: actions/upload-artifact@v6
6565
with:
6666
path: ./quaddtype/wheelhouse/*.whl
6767
name: wheels-linux
@@ -125,7 +125,7 @@ jobs:
125125
python -m cibuildwheel --output-dir wheelhouse
126126
working-directory: ./quaddtype
127127

128-
- uses: actions/upload-artifact@v5
128+
- uses: actions/upload-artifact@v6
129129
with:
130130
path: ./quaddtype/wheelhouse/*.whl
131131
name: wheels-${{ matrix.os }}
@@ -185,7 +185,7 @@ jobs:
185185
if (-not (Test-Path wheelhouse/*.whl)) { throw "Wheel was not created" }
186186
working-directory: ./quaddtype
187187

188-
- uses: actions/upload-artifact@v5
188+
- uses: actions/upload-artifact@v6
189189
with:
190190
path: ./quaddtype/wheelhouse/*.whl
191191
name: wheels-windows-${{ matrix.architecture }}
@@ -222,7 +222,7 @@ jobs:
222222
working-directory: ./quaddtype
223223

224224
- name: Upload SDist artifact
225-
uses: actions/upload-artifact@v5
225+
uses: actions/upload-artifact@v6
226226
with:
227227
name: sdist
228228
path: ./quaddtype/dist/*.tar.gz
@@ -248,7 +248,7 @@ jobs:
248248

249249
steps:
250250
- name: Download all workflow run artifacts
251-
uses: actions/download-artifact@v6
251+
uses: actions/download-artifact@v7
252252
with:
253253
pattern: "*"
254254
path: dist

.github/workflows/typecheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
steps:
2323
- uses: actions/checkout@v6
2424

25-
- uses: astral-sh/[email protected].5
25+
- uses: astral-sh/[email protected].6
2626
with:
2727
activate-environment: true
2828
python-version: "3.11"

0 commit comments

Comments
 (0)