Skip to content

Commit fbf238f

Browse files
chore(deps): bump the actions group across 1 directory with 4 updates (#194)
Bumps the actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact), [conda-incubator/setup-miniconda](https://github.com/conda-incubator/setup-miniconda) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) Updates `conda-incubator/setup-miniconda` from 3.2.0 to 3.3.0 - [Release notes](https://github.com/conda-incubator/setup-miniconda/releases) - [Changelog](https://github.com/conda-incubator/setup-miniconda/blob/main/CHANGELOG.md) - [Commits](conda-incubator/setup-miniconda@v3.2.0...v3.3.0) 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/checkout dependency-version: '6' 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: conda-incubator/setup-miniconda dependency-version: 3.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 5244df3 commit fbf238f

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/cibw-cc.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ${{ matrix.os }}
3232

3333
steps:
34-
- uses: actions/checkout@v5
34+
- uses: actions/checkout@v6
3535

3636
- uses: actions/setup-python@v6
3737

@@ -59,7 +59,7 @@ jobs:
5959
CIBW_PLATFORM: ${{ matrix.platform }}
6060
CIBW_ARCHS: ${{ matrix.archs || 'auto' }}
6161

62-
- uses: actions/upload-artifact@v5
62+
- uses: actions/upload-artifact@v6
6363
with:
6464
name: wheels-${{ matrix.platform }}-${{ matrix.os }}
6565
path: dist/*.whl

.github/workflows/conda.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
shell: "bash -l {0}"
2424

2525
steps:
26-
- uses: actions/checkout@v5
26+
- uses: actions/checkout@v6
2727

2828
- name: Get conda
29-
uses: conda-incubator/setup-miniconda@v3.2.0
29+
uses: conda-incubator/setup-miniconda@v3.3.0
3030
with:
3131
python-version: ${{ matrix.python-version }}
3232
channels: conda-forge

.github/workflows/pip.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
python-version: ["3.9", "3.14", "pypy-3.10"]
1919

2020
steps:
21-
- uses: actions/checkout@v5
21+
- uses: actions/checkout@v6
2222

2323
- uses: actions/setup-python@v6
2424
with:

.github/workflows/wheels.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
name: Build SDist
2323
runs-on: ubuntu-latest
2424
steps:
25-
- uses: actions/checkout@v5
25+
- uses: actions/checkout@v6
2626
with:
2727
submodules: true
2828

@@ -32,7 +32,7 @@ jobs:
3232
- name: Check metadata
3333
run: pipx run twine check dist/*
3434

35-
- uses: actions/upload-artifact@v5
35+
- uses: actions/upload-artifact@v6
3636
with:
3737
name: cibw-sdist
3838
path: dist/*.tar.gz
@@ -47,7 +47,7 @@ jobs:
4747
os: [ubuntu-latest, macos-15-intel, macos-latest, windows-latest, ubuntu-24.04-arm, windows-11-arm]
4848

4949
steps:
50-
- uses: actions/checkout@v5
50+
- uses: actions/checkout@v6
5151
with:
5252
submodules: true
5353

@@ -59,7 +59,7 @@ jobs:
5959
run: git diff --exit-code
6060
shell: bash
6161

62-
- uses: actions/upload-artifact@v5
62+
- uses: actions/upload-artifact@v6
6363
with:
6464
name: cibw-wheels-${{ matrix.os }}
6565
path: wheelhouse/*.whl
@@ -80,7 +80,7 @@ jobs:
8080
with:
8181
python-version: "3.x"
8282

83-
- uses: actions/download-artifact@v6
83+
- uses: actions/download-artifact@v7
8484
with:
8585
pattern: cibw-*
8686
merge-multiple: true

0 commit comments

Comments
 (0)