Skip to content

Commit 27dfa18

Browse files
Bump the github-actions group with 4 updates
Bumps the github-actions group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [actions/setup-python](https://github.com/actions/setup-python), [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) Updates `actions/setup-python` from 5 to 6 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v6) Updates `pypa/cibuildwheel` from 2.23.2 to 3.2.1 - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](pypa/cibuildwheel@v2.23.2...v3.2.1) Updates `actions/download-artifact` from 4 to 5 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: pypa/cibuildwheel dependency-version: 3.2.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 5c9f556 commit 27dfa18

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/build_dist.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Check out repository
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323
with:
2424
fetch-depth: 0 # To ensure tags are retrieved to enabe setuptools_scm to work
2525
- name: Install Python 3.x
26-
uses: actions/setup-python@v5
26+
uses: actions/setup-python@v6
2727
with:
2828
python-version: 3.x
2929
- name: Build sdist
@@ -51,11 +51,11 @@ jobs:
5151
cibw_build: [cp39-*, cp310-*, cp311-*, cp312-*, cp313-*, cp313t-*]
5252
steps:
5353
- name: Check out repository
54-
uses: actions/checkout@v4
54+
uses: actions/checkout@v5
5555
with:
5656
fetch-depth: 0 # To ensure tags are retrieved to enabe setuptools_scm to work
5757
- name: Install Python 3.x
58-
uses: actions/setup-python@v5
58+
uses: actions/setup-python@v6
5959
with:
6060
python-version: 3.x
6161
- name: Set up QEMU # Needed to build aarch64 wheels
@@ -78,7 +78,7 @@ jobs:
7878
echo "CIBW_ENVIRONMENT=PYLZ4_USE_SYSTEM_LZ4=False" >> "$GITHUB_ENV"
7979
echo "CIBW_TEST_COMMAND=tox -c {project}" >> "$GITHUB_ENV"
8080
- name: Build wheels
81-
uses: pypa/cibuildwheel@v2.23.2
81+
uses: pypa/cibuildwheel@v3.2.1
8282
env:
8383
# CIBW_ARCHS_LINUX: "x86_64 i686 aarch64"
8484
CIBW_ARCHS_LINUX: "x86_64 i686"
@@ -109,11 +109,11 @@ jobs:
109109
cibw_build: [cp39-*, cp310-*, cp311-*, cp312-*, cp313-*, cp313t-*]
110110
steps:
111111
- name: Check out repository
112-
uses: actions/checkout@v4
112+
uses: actions/checkout@v5
113113
with:
114114
fetch-depth: 0 # To ensure tags are retrieved to enabe setuptools_scm to work
115115
- name: Install Python 3.x
116-
uses: actions/setup-python@v5
116+
uses: actions/setup-python@v6
117117
with:
118118
python-version: 3.x
119119
- name: Setup free-threading variables
@@ -132,7 +132,7 @@ jobs:
132132
echo "CIBW_ENVIRONMENT=PYLZ4_USE_SYSTEM_LZ4=False" >> "$GITHUB_ENV"
133133
echo "CIBW_TEST_COMMAND=tox -c {project}" >> "$GITHUB_ENV"
134134
- name: Build wheels
135-
uses: pypa/cibuildwheel@v2.23.2
135+
uses: pypa/cibuildwheel@v3.2.1
136136
env:
137137
CIBW_ARCHS_LINUX: "aarch64"
138138
CIBW_BUILD: ${{ matrix.cibw_build }}
@@ -151,7 +151,7 @@ jobs:
151151
runs-on: ubuntu-latest
152152
if: startsWith(github.ref, 'refs/tags/')
153153
steps:
154-
- uses: actions/download-artifact@v4
154+
- uses: actions/download-artifact@v5
155155
with:
156156
pattern: cibw-*
157157
path: dist

0 commit comments

Comments
 (0)