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
2 changes: 1 addition & 1 deletion .github/workflows/emscripten.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
name: Pyodide cibuildwheel
runs-on: 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/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
examples:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0
submodules: true
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Install requirements
run: apt-get update && apt-get install -y python3-dev python3-pip git ninja-build

- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0
submodules: true
Expand All @@ -44,7 +44,7 @@ jobs:
name: PyLint

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0
submodules: true
Expand All @@ -68,7 +68,7 @@ jobs:
- python-version: "pypy3.11"

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0
submodules: true
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
only: cp311-win_arm64

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/weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: true

Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
name: Build SDist
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0
submodules: true
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
build: "*musllinux*"

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0
submodules: true
Expand Down Expand Up @@ -124,12 +124,12 @@ jobs:
runs-on: [macos-14, macos-13]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0
submodules: true

- run: brew upgrade cmake
- run: brew uninstall cmake; brew install cmake

- uses: pypa/[email protected]
env:
Expand All @@ -153,7 +153,7 @@ jobs:
# matrix:
# runs-on: [ubuntu-latest, macos-latest]
# steps:
# - uses: actions/checkout@v4
# - uses: actions/checkout@v5
# with:
# fetch-depth: 0
# submodules: true
Expand Down Expand Up @@ -186,7 +186,7 @@ jobs:
contents: read

steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v5
with:
pattern: wheels-*
merge-multiple: true
Expand All @@ -196,7 +196,7 @@ jobs:
run: ls -lh dist

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

Expand All @@ -211,7 +211,7 @@ jobs:
needs: [build_wheels]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v5
with:
pattern: wheels-*
merge-multiple: true
Expand Down
Loading