Skip to content

Commit 3aeb113

Browse files
chore(deps): bump the actions group across 1 directory with 5 updates (#5941)
* chore(deps): bump the actions group across 1 directory with 5 updates Bumps the actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `1` | `6` | | [actions/cache](https://github.com/actions/cache) | `4` | `5` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `5` | `6` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `6` | `7` | | [scientific-python/upload-nightly-action](https://github.com/scientific-python/upload-nightly-action) | `0.6.2` | `0.6.3` | Updates `actions/checkout` from 1 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v1...v6) 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 `scientific-python/upload-nightly-action` from 0.6.2 to 0.6.3 - [Release notes](https://github.com/scientific-python/upload-nightly-action/releases) - [Commits](scientific-python/upload-nightly-action@b36e8c0...5748273) --- 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/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: scientific-python/upload-nightly-action dependency-version: 0.6.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]> * Reset install-classic actions/checkout to @v1 * Pin actions/checkout@v1 to SHA, switch dependabot to monthly Pin the i386/debian container checkout to SHA to prevent dependabot from updating it (v1 is required for that container). Remove the non-working ignore block and change schedule from weekly to monthly. --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ralf W. Grosse-Kunstleve <[email protected]>
1 parent d4f9cfb commit 3aeb113

File tree

4 files changed

+10
-13
lines changed

4 files changed

+10
-13
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,8 @@ updates:
44
- package-ecosystem: "github-actions"
55
directory: "/"
66
schedule:
7-
interval: "weekly"
7+
interval: "monthly"
88
groups:
99
actions:
1010
patterns:
1111
- "*"
12-
ignore:
13-
- dependency-name: actions/checkout
14-
versions:
15-
- "<5"

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ jobs:
296296

297297
- name: Valgrind cache
298298
if: matrix.valgrind
299-
uses: actions/cache@v4
299+
uses: actions/cache@v5
300300
id: cache-valgrind
301301
with:
302302
path: valgrind
@@ -778,7 +778,8 @@ jobs:
778778
timeout-minutes: 90
779779

780780
steps:
781-
- uses: actions/checkout@v1 # v1 is required to run inside docker
781+
# v1 required for i386/debian container; pinned to SHA to prevent dependabot updates
782+
- uses: actions/checkout@544eadc6bf3d226fd7a7a9f0dc5b5bf7ca0675b9 # v1
782783

783784
- name: Install requirements
784785
run: |

.github/workflows/nightlies.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
nox -s build
3434
nox -s build_global
3535
36-
- uses: actions/upload-artifact@v5
36+
- uses: actions/upload-artifact@v6
3737
with:
3838
name: Packages
3939
path: dist/*
@@ -44,7 +44,7 @@ jobs:
4444
needs: [build_wheel]
4545
runs-on: ubuntu-latest
4646
steps:
47-
- uses: actions/download-artifact@v6
47+
- uses: actions/download-artifact@v7
4848
with:
4949
name: Packages
5050
path: dist
@@ -53,7 +53,7 @@ jobs:
5353
run: ls -lha dist/*.whl
5454

5555
- name: Upload wheel to Anaconda Cloud as nightly
56-
uses: scientific-python/upload-nightly-action@b36e8c0c10dbcfd2e05bf95f17ef8c14fd708dbf # 0.6.2
56+
uses: scientific-python/upload-nightly-action@5748273c71e2d8d3a61f3a11a16421c8954f9ecf # 0.6.3
5757
with:
5858
artifacts_path: dist
5959
anaconda_nightly_upload_token: ${{ secrets.ANACONDA_ORG_UPLOAD_TOKEN }}

.github/workflows/pip.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,13 @@ jobs:
7272
run: twine check dist/*
7373

7474
- name: Save standard package
75-
uses: actions/upload-artifact@v5
75+
uses: actions/upload-artifact@v6
7676
with:
7777
name: standard
7878
path: dist/pybind11-*
7979

8080
- name: Save global package
81-
uses: actions/upload-artifact@v5
81+
uses: actions/upload-artifact@v6
8282
with:
8383
name: global
8484
path: dist/*global-*
@@ -100,7 +100,7 @@ jobs:
100100

101101
steps:
102102
# Downloads all to directories matching the artifact names
103-
- uses: actions/download-artifact@v6
103+
- uses: actions/download-artifact@v7
104104

105105
- name: Generate artifact attestation for sdist and wheel
106106
uses: actions/attest-build-provenance@v3

0 commit comments

Comments
 (0)