Skip to content

Commit 0b463d6

Browse files
build(deps): bump the dependencies group with 3 updates (#459)
Bumps the dependencies group with 3 updates: [scitools/workflows](https://github.com/scitools/workflows), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `scitools/workflows` from 2025.10.4 to 2025.10.7 - [Release notes](https://github.com/scitools/workflows/releases) - [Commits](SciTools/workflows@2025.10.4...2025.10.7) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) --- updated-dependencies: - dependency-name: scitools/workflows dependency-version: 2025.10.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/download-artifact dependency-version: '6' 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 45174e2 commit 0b463d6

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/ci-locks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ concurrency:
1515

1616
jobs:
1717
refresh_lockfiles:
18-
uses: scitools/workflows/.github/workflows/[email protected].4
18+
uses: scitools/workflows/.github/workflows/[email protected].7
1919
secrets: inherit

.github/workflows/ci-manifest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ concurrency:
2525
jobs:
2626
manifest:
2727
name: "check-manifest"
28-
uses: scitools/workflows/.github/workflows/[email protected].4
28+
uses: scitools/workflows/.github/workflows/[email protected].7

.github/workflows/ci-template-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
prompt-share:
13-
uses: scitools/workflows/.github/workflows/[email protected].4
13+
uses: scitools/workflows/.github/workflows/[email protected].7
1414
secrets: inherit
1515
with:
1616
pr_number: ${{ github.event.pull_request.number }}

.github/workflows/ci-wheels.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
run: |
5353
ls -l ${{ github.workspace }}/dist
5454
55-
- uses: actions/upload-artifact@v4
55+
- uses: actions/upload-artifact@v5
5656
with:
5757
name: pypi-artifacts
5858
path: ${{ github.workspace }}/dist
@@ -83,7 +83,7 @@ jobs:
8383
with:
8484
python-version: ${{ matrix.python-version }}
8585

86-
- uses: actions/download-artifact@v5
86+
- uses: actions/download-artifact@v6
8787
with:
8888
name: pypi-artifacts
8989
path: ${{ github.workspace }}/dist
@@ -102,7 +102,7 @@ jobs:
102102
name: "show artifacts"
103103
runs-on: ubuntu-latest
104104
steps:
105-
- uses: actions/download-artifact@v5
105+
- uses: actions/download-artifact@v6
106106
with:
107107
name: pypi-artifacts
108108
path: ${{ github.workspace }}/dist
@@ -119,7 +119,7 @@ jobs:
119119
# upload to Test PyPI for every commit on main branch
120120
if: github.event_name == 'push' && github.event.ref == 'refs/heads/main'
121121
steps:
122-
- uses: actions/download-artifact@v5
122+
- uses: actions/download-artifact@v6
123123
with:
124124
name: pypi-artifacts
125125
path: ${{ github.workspace }}/dist
@@ -140,7 +140,7 @@ jobs:
140140
# upload to PyPI for every tag starting with 'v'
141141
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')
142142
steps:
143-
- uses: actions/download-artifact@v5
143+
- uses: actions/download-artifact@v6
144144
with:
145145
name: pypi-artifacts
146146
path: ${{ github.workspace }}/dist

0 commit comments

Comments
 (0)