Skip to content
Open
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
4 changes: 2 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,7 @@ jobs:
timeout-minutes: 90

steps:
- uses: actions/checkout@v1 # v1 is required to run inside docker
- uses: actions/checkout@v6 # v1 is required to run inside docker

- name: Install requirements
run: |
Expand Down
4 changes: 2 additions & 2 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 Down
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