Skip to content

Commit 6fa8de3

Browse files
Bump the dependencies group with 5 updates (#411)
Bumps the dependencies group with 5 updates: | Package | From | To | | --- | --- | --- | | [scitools/workflows/.github/workflows/refresh-lockfiles.yml](https://github.com/scitools/workflows) | `2026.02.0` | `2026.03.2` | | [scitools/workflows/.github/workflows/ci-manifest.yml](https://github.com/scitools/workflows) | `2026.02.0` | `2026.03.2` | | [scitools/workflows/.github/workflows/ci-template-check.yml](https://github.com/scitools/workflows) | `2026.02.0` | `2026.03.2` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `6` | `7` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `7` | `8` | Updates `scitools/workflows/.github/workflows/refresh-lockfiles.yml` from 2026.02.0 to 2026.03.2 - [Release notes](https://github.com/scitools/workflows/releases) - [Commits](SciTools/workflows@2026.02.0...2026.03.2) Updates `scitools/workflows/.github/workflows/ci-manifest.yml` from 2026.02.0 to 2026.03.2 - [Release notes](https://github.com/scitools/workflows/releases) - [Commits](SciTools/workflows@2026.02.0...2026.03.2) Updates `scitools/workflows/.github/workflows/ci-template-check.yml` from 2026.02.0 to 2026.03.2 - [Release notes](https://github.com/scitools/workflows/releases) - [Commits](SciTools/workflows@2026.02.0...2026.03.2) Updates `actions/upload-artifact` from 6 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v6...v7) Updates `actions/download-artifact` from 7 to 8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v7...v8) --- updated-dependencies: - dependency-name: scitools/workflows/.github/workflows/refresh-lockfiles.yml dependency-version: 2026.03.2 dependency-type: direct:production dependency-group: dependencies - dependency-name: scitools/workflows/.github/workflows/ci-manifest.yml dependency-version: 2026.03.2 dependency-type: direct:production dependency-group: dependencies - dependency-name: scitools/workflows/.github/workflows/ci-template-check.yml dependency-version: 2026.03.2 dependency-type: direct:production dependency-group: dependencies - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 51078b4 commit 6fa8de3

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
@@ -18,5 +18,5 @@ concurrency:
1818

1919
jobs:
2020
refresh_lockfiles:
21-
uses: scitools/workflows/.github/workflows/refresh-lockfiles.yml@2026.02.0
21+
uses: scitools/workflows/.github/workflows/refresh-lockfiles.yml@2026.03.2
2222
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/ci-manifest.yml@2026.02.0
28+
uses: scitools/workflows/.github/workflows/ci-manifest.yml@2026.03.2

.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/ci-template-check.yml@2026.02.0
13+
uses: scitools/workflows/.github/workflows/ci-template-check.yml@2026.03.2
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
@@ -59,7 +59,7 @@ jobs:
5959
CIBW_TEST_COMMAND: >
6060
python -m pytest --pyargs stratify
6161
62-
- uses: actions/upload-artifact@v6
62+
- uses: actions/upload-artifact@v7
6363
with:
6464
name: pypi-${{ matrix.os }}-${{ matrix.arch }}-artifact
6565
path: ${{ github.workspace }}/wheelhouse/*.whl
@@ -78,7 +78,7 @@ jobs:
7878
run: |
7979
pipx run build --sdist
8080
81-
- uses: actions/upload-artifact@v6
81+
- uses: actions/upload-artifact@v7
8282
with:
8383
name: pypi-sdist
8484
path: ${{ github.workspace }}/dist/*.tar.gz
@@ -89,7 +89,7 @@ jobs:
8989
name: "Show artifacts"
9090
runs-on: ubuntu-latest
9191
steps:
92-
- uses: actions/download-artifact@v7
92+
- uses: actions/download-artifact@v8
9393
with:
9494
merge-multiple: true
9595
path: ${{ github.workspace }}/dist
@@ -106,7 +106,7 @@ jobs:
106106
# upload to Test PyPI for every commit on main branch
107107
if: github.event_name == 'push' && github.event.ref == 'refs/heads/main'
108108
steps:
109-
- uses: actions/download-artifact@v7
109+
- uses: actions/download-artifact@v8
110110
with:
111111
merge-multiple: true
112112
path: ${{ github.workspace }}/dist
@@ -127,7 +127,7 @@ jobs:
127127
# upload to PyPI for every tag starting with 'v'
128128
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')
129129
steps:
130-
- uses: actions/download-artifact@v7
130+
- uses: actions/download-artifact@v8
131131
with:
132132
merge-multiple: true
133133
path: ${{ github.workspace }}/dist

0 commit comments

Comments
 (0)