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
32 changes: 16 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ jobs:
runs-on: ${{ matrix.runs-on }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
Expand Down Expand Up @@ -242,7 +242,7 @@ jobs:
timeout-minutes: 40
container: quay.io/pypa/musllinux_1_2_x86_64:latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0

Expand Down Expand Up @@ -279,7 +279,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup Python ${{ matrix.python-version }} (deadsnakes)
uses: deadsnakes/[email protected]
Expand Down Expand Up @@ -366,7 +366,7 @@ jobs:
container: "silkeh/clang:${{ matrix.clang }}${{ matrix.container_suffix }}"

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Add wget and python3
run: apt-get update && apt-get install -y python3-dev python3-numpy python3-pytest libeigen3-dev
Expand Down Expand Up @@ -403,7 +403,7 @@ jobs:
container: nvidia/cuda:12.2.0-devel-ubuntu22.04

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

# tzdata will try to ask for the timezone, so set the DEBIAN_FRONTEND
- name: Install 🐍 3
Expand All @@ -427,7 +427,7 @@ jobs:
# container: centos:8
#
# steps:
# - uses: actions/checkout@v4
# - uses: actions/checkout@v5
#
# - name: Add Python 3 and a few requirements
# run: yum update -y && yum install -y git python3-devel python3-numpy python3-pytest make environment-modules
Expand Down Expand Up @@ -473,7 +473,7 @@ jobs:
# tzdata will try to ask for the timezone, so set the DEBIAN_FRONTEND
DEBIAN_FRONTEND: 'noninteractive'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Add NVHPC Repo
run: |
Expand Down Expand Up @@ -534,7 +534,7 @@ jobs:
container: "gcc:${{ matrix.gcc }}"

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Add Python 3
run: apt-get update; apt-get install -y python3-dev python3-numpy python3-pytest python3-pip libeigen3-dev
Expand Down Expand Up @@ -597,7 +597,7 @@ jobs:
name: "🐍 3 • ICC latest • x64"

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Add apt repo
run: |
Expand Down Expand Up @@ -710,7 +710,7 @@ jobs:

steps:
- name: Latest actions/checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Add Python 3.8
if: matrix.container == 'almalinux:8'
Expand Down Expand Up @@ -811,7 +811,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- uses: actions/setup-python@v5
with:
Expand Down Expand Up @@ -857,7 +857,7 @@ jobs:
runs-on: windows-2022

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v5
Expand Down Expand Up @@ -909,7 +909,7 @@ jobs:
runs-on: windows-2022

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v5
Expand Down Expand Up @@ -957,7 +957,7 @@ jobs:
runs-on: windows-2022

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v5
Expand Down Expand Up @@ -1043,7 +1043,7 @@ jobs:
mingw-w64-${{matrix.env}}-catch
${{ matrix.extra_install }}

- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Configure C++11
# LTO leads to many undefined reference like
Expand Down Expand Up @@ -1133,7 +1133,7 @@ jobs:
run: env

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set up Clang
uses: egor-tensin/setup-clang@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/configure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
runs-on: ${{ matrix.runs-on }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup Python 3.11
uses: actions/setup-python@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-link.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
if: github.event.repository.fork == false
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Check for docs changes
id: docs_changes
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-python@v5
with:
python-version: "3.x"
Expand All @@ -40,7 +40,7 @@ jobs:
runs-on: ubuntu-latest
container: silkeh/clang:20
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Install requirements
run: apt-get update && apt-get install -y git python3-dev python3-pytest ninja-build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightlies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
if: github.repository_owner == 'pybind'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup 🐍 3.8
uses: actions/setup-python@v5
Expand All @@ -47,7 +47,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup 🐍 3.8
uses: actions/setup-python@v5
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
- uses: actions/download-artifact@v5

- name: Generate artifact attestation for sdist and wheel
uses: actions/attest-build-provenance@v2
uses: actions/attest-build-provenance@v3
with:
subject-path: "*/pybind11*"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-standard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
runs-on: ${{ inputs.runs-on }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup Python ${{ inputs.python-version }}
uses: actions/setup-python@v5
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests-cibw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
name: Pyodide wheel
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: true
fetch-depth: 0
Expand All @@ -37,7 +37,7 @@ jobs:
matrix:
runs-on: [macos-14, macos-13]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: true
fetch-depth: 0
Expand All @@ -60,7 +60,7 @@ jobs:
matrix:
runs-on: [macos-latest, macos-13, ubuntu-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: true
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
if: "contains(github.event.pull_request.labels.*.name, 'python dev')"

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Setup Python 3.13
uses: actions/setup-python@v5
Expand Down
Loading