Skip to content

Commit d8c3ff4

Browse files
Bump the dependencies group across 1 directory with 4 updates (#377)
Bumps the dependencies group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [scitools/workflows](https://github.com/scitools/workflows), [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `scitools/workflows` from 2025.07.3 to 2025.08.2 - [Release notes](https://github.com/scitools/workflows/releases) - [Commits](SciTools/workflows@2025.07.3...2025.08.2) Updates `pypa/cibuildwheel` from 3.1.2 to 3.1.3 - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](pypa/cibuildwheel@v3.1.2...v3.1.3) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: scitools/workflows dependency-version: 2025.08.2 dependency-type: direct:production dependency-group: dependencies - dependency-name: pypa/cibuildwheel dependency-version: 3.1.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: actions/download-artifact dependency-version: '5' 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 2aec99d commit d8c3ff4

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/workflows/ci-citation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
name: "validate"
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424
with:
2525
fetch-depth: 0
2626

.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@2025.07.3
21+
uses: scitools/workflows/.github/workflows/refresh-lockfiles.yml@2025.08.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@2025.07.3
28+
uses: scitools/workflows/.github/workflows/ci-manifest.yml@2025.08.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@2025.07.3
13+
uses: scitools/workflows/.github/workflows/ci-template-check.yml@2025.08.2
1414
secrets: inherit
1515
with:
1616
pr_number: ${{ github.event.pull_request.number }}

.github/workflows/ci-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
codecov: "codecov"
5353

5454
steps:
55-
- uses: actions/checkout@v4
55+
- uses: actions/checkout@v5
5656
with:
5757
fetch-depth: 0
5858

.github/workflows/ci-wheels.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ jobs:
4343
arch: "AMD64"
4444

4545
steps:
46-
- uses: actions/checkout@v4
46+
- uses: actions/checkout@v5
4747
with:
4848
fetch-depth: 0
4949

5050
- name: "build ${{ matrix.os }} (${{ matrix.arch }}) wheels"
51-
uses: pypa/[email protected].2
51+
uses: pypa/[email protected].3
5252
env:
5353
CIBW_SKIP: "cp39-* cp310-* cp314-* pp* *-musllinux*"
5454
CIBW_ARCHS: ${{ matrix.arch }}
@@ -69,7 +69,7 @@ jobs:
6969
name: "Build sdist"
7070
runs-on: ubuntu-latest
7171
steps:
72-
- uses: actions/checkout@v4
72+
- uses: actions/checkout@v5
7373
with:
7474
fetch-depth: 0
7575

@@ -89,7 +89,7 @@ jobs:
8989
name: "Show artifacts"
9090
runs-on: ubuntu-latest
9191
steps:
92-
- uses: actions/download-artifact@v4
92+
- uses: actions/download-artifact@v5
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@v4
109+
- uses: actions/download-artifact@v5
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@v4
130+
- uses: actions/download-artifact@v5
131131
with:
132132
merge-multiple: true
133133
path: ${{ github.workspace }}/dist

0 commit comments

Comments
 (0)