Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,8 @@ updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
interval: "monthly"
groups:
actions:
patterns:
- "*"
ignore:
- dependency-name: actions/checkout
versions:
- "<5"
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ jobs:

- name: Valgrind cache
if: matrix.valgrind
uses: actions/cache@v4
uses: actions/cache@v5
id: cache-valgrind
with:
path: valgrind
Expand Down Expand Up @@ -778,7 +778,8 @@ jobs:
timeout-minutes: 90

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

- name: Install requirements
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nightlies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
nox -s build
nox -s build_global

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: Packages
path: dist/*
Expand All @@ -44,7 +44,7 @@ jobs:
needs: [build_wheel]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
name: Packages
path: dist
Expand All @@ -53,7 +53,7 @@ jobs:
run: ls -lha dist/*.whl

- name: Upload wheel to Anaconda Cloud as nightly
uses: scientific-python/upload-nightly-action@b36e8c0c10dbcfd2e05bf95f17ef8c14fd708dbf # 0.6.2
uses: scientific-python/upload-nightly-action@5748273c71e2d8d3a61f3a11a16421c8954f9ecf # 0.6.3
with:
artifacts_path: dist
anaconda_nightly_upload_token: ${{ secrets.ANACONDA_ORG_UPLOAD_TOKEN }}
6 changes: 3 additions & 3 deletions .github/workflows/pip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,13 @@ jobs:
run: twine check dist/*

- name: Save standard package
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: standard
path: dist/pybind11-*

- name: Save global package
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: global
path: dist/*global-*
Expand All @@ -100,7 +100,7 @@ jobs:

steps:
# Downloads all to directories matching the artifact names
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7

- name: Generate artifact attestation for sdist and wheel
uses: actions/attest-build-provenance@v3
Expand Down
Loading