Skip to content

Commit 33612bd

Browse files
dependabot[bot]jonathanunderwood
authored andcommitted
Bump the github-actions group across 1 directory with 4 updates
Bumps the github-actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact), [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `pypa/cibuildwheel` from 3.2.1 to 3.3.0 - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](pypa/cibuildwheel@v3.2.1...v3.3.0) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: pypa/cibuildwheel dependency-version: 3.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 43b672d commit 33612bd

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,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Check out repository
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v6
2323
with:
2424
fetch-depth: 0 # To ensure tags are retrieved to enable setuptools_scm to work
2525
- name: Install Python 3.x
@@ -29,7 +29,7 @@ jobs:
2929
- name: Build sdist
3030
run: pipx run build --sdist
3131
- name: Save sdist
32-
uses: actions/upload-artifact@v4
32+
uses: actions/upload-artifact@v5
3333
with:
3434
name: cibw-sdist.tar.gz
3535
path: dist/*.tar.gz
@@ -51,7 +51,7 @@ jobs:
5151
cibw_build: [cp39-*, cp310-*, cp311-*, cp312-*, cp313-*, cp313t-*, cp314-*, cp314t-*]
5252
steps:
5353
- name: Check out repository
54-
uses: actions/checkout@v5
54+
uses: actions/checkout@v6
5555
with:
5656
fetch-depth: 0 # To ensure tags are retrieved to enable setuptools_scm to work
5757
- name: Install Python 3.x
@@ -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@v3.2.1
81+
uses: pypa/cibuildwheel@v3.3.0
8282
env:
8383
# CIBW_ARCHS_LINUX: "x86_64 i686 aarch64"
8484
CIBW_ARCHS_LINUX: "x86_64 i686"
@@ -90,7 +90,7 @@ jobs:
9090
CIBW_TEST_SKIP: "*-macosx_arm64 *-macosx_universal2:arm64 *-*linux_{ppc64le,s390x} *-win_arm64"
9191
CIBW_BEFORE_BUILD: "python -m pip install -U pip && python -m pip install tox"
9292
- name: Save wheels
93-
uses: actions/upload-artifact@v4
93+
uses: actions/upload-artifact@v5
9494
with:
9595
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
9696
path: ./wheelhouse/*.whl
@@ -109,7 +109,7 @@ jobs:
109109
cibw_build: [cp39-*, cp310-*, cp311-*, cp312-*, cp313-*, cp313t-*, cp314-*, cp314t-*]
110110
steps:
111111
- name: Check out repository
112-
uses: actions/checkout@v5
112+
uses: actions/checkout@v6
113113
with:
114114
fetch-depth: 0 # To ensure tags are retrieved to enable setuptools_scm to work
115115
- name: Install Python 3.x
@@ -122,15 +122,15 @@ jobs:
122122
echo "CIBW_ENVIRONMENT=PYLZ4_USE_SYSTEM_LZ4=False" >> "$GITHUB_ENV"
123123
echo "CIBW_TEST_COMMAND=tox -c {project}" >> "$GITHUB_ENV"
124124
- name: Build wheels
125-
uses: pypa/cibuildwheel@v3.2.1
125+
uses: pypa/cibuildwheel@v3.3.0
126126
env:
127127
CIBW_ARCHS_LINUX: "aarch64"
128128
CIBW_BUILD: ${{ matrix.cibw_build }}
129129
CIBW_SKIP: "cp*-musllinux*"
130130
CIBW_ENABLE: cpython-freethreading
131131
CIBW_BEFORE_BUILD: "python -m pip install -U pip && python -m pip install tox"
132132
- name: Save wheels
133-
uses: actions/upload-artifact@v4
133+
uses: actions/upload-artifact@v5
134134
with:
135135
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
136136
path: ./wheelhouse/*.whl
@@ -141,7 +141,7 @@ jobs:
141141
runs-on: ubuntu-latest
142142
if: startsWith(github.ref, 'refs/tags/')
143143
steps:
144-
- uses: actions/download-artifact@v5
144+
- uses: actions/download-artifact@v6
145145
with:
146146
pattern: cibw-*
147147
path: dist

0 commit comments

Comments
 (0)