Skip to content

Commit 20138f6

Browse files
Bump the github-actions group with 5 updates (#713)
Bumps the github-actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `3` | `4` | | [actions/setup-python](https://github.com/actions/setup-python) | `2` | `5` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `3` | `4` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `3` | `4` | | [softprops/action-gh-release](https://github.com/softprops/action-gh-release) | `1` | `2` | Updates `actions/checkout` from 3 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v3...v4) Updates `actions/setup-python` from 2 to 5 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v2...v5) Updates `actions/upload-artifact` from 3 to 4 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v3...v4) Updates `actions/download-artifact` from 3 to 4 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v3...v4) Updates `softprops/action-gh-release` from 1 to 2 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](softprops/action-gh-release@v1...v2) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: softprops/action-gh-release dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent bbe563c commit 20138f6

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

.github/workflows/emscripten.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
- name: Set up Python 3.11
4040
id: setup-python
41-
uses: actions/setup-python@v2
41+
uses: actions/setup-python@v5
4242
with:
4343
python-version: "3.11.2"
4444

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- uses: actions/checkout@v4
2525

2626
- name: Set up Python ${{ matrix.python-version }}
27-
uses: actions/setup-python@v4
27+
uses: actions/setup-python@v5
2828
with:
2929
python-version: ${{ matrix.python-version }}
3030

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
uses: actions/checkout@v4
5656

5757
- name: Setup Python
58-
uses: actions/setup-python@v4
58+
uses: actions/setup-python@v5
5959
with:
6060
python-version: ${{ matrix.python-version}}
6161
allow-prereleases: true
@@ -157,7 +157,7 @@ jobs:
157157
uses: actions/checkout@v4
158158

159159
- name: Setup Python
160-
uses: actions/setup-python@v4
160+
uses: actions/setup-python@v5
161161
with:
162162
python-version: ${{ matrix.python-version}}
163163
allow-prereleases: true

.github/workflows/wheel_tests_and_release.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- uses: actions/checkout@v4
2727
with:
2828
fetch-depth: 0
29-
- uses: actions/setup-python@v4
29+
- uses: actions/setup-python@v5
3030
name: Install Python
3131
with:
3232
python-version: "3.9"
@@ -42,7 +42,7 @@ jobs:
4242
CIBW_SKIP: "*-musllinux_*"
4343
CIBW_MANYLINUX_X86_64_IMAGE: ${{ matrix.cibw_manylinux }}
4444
CIBW_MANYLINUX_I686_IMAGE: "manylinux2010"
45-
- uses: actions/upload-artifact@v3
45+
- uses: actions/upload-artifact@v4
4646
with:
4747
name: wheels
4848
path: ./dist/*.whl
@@ -57,10 +57,10 @@ jobs:
5757
cibw_python: ["cp39-*", "cp310-*", "cp311-*", "cp312-*"]
5858
cibw_manylinux: [manylinux2014]
5959
steps:
60-
- uses: actions/checkout@v3
60+
- uses: actions/checkout@v4
6161
with:
6262
fetch-depth: 0
63-
- uses: actions/setup-python@v4
63+
- uses: actions/setup-python@v5
6464
name: Install Python
6565
with:
6666
python-version: "3.9"
@@ -79,7 +79,7 @@ jobs:
7979
CIBW_ARCHS_LINUX: aarch64
8080
CIBW_SKIP: "*-musllinux_*"
8181
CIBW_MANYLINUX_X86_64_IMAGE: ${{ matrix.cibw_manylinux }}
82-
- uses: actions/upload-artifact@v3
82+
- uses: actions/upload-artifact@v4
8383
with:
8484
name: wheels
8585
path: ./dist/*.whl
@@ -98,7 +98,7 @@ jobs:
9898
with:
9999
fetch-depth: 0
100100

101-
- uses: actions/setup-python@v4
101+
- uses: actions/setup-python@v5
102102
name: Install Python
103103
with:
104104
python-version: "3.9"
@@ -126,7 +126,7 @@ jobs:
126126
CIBW_BUILD: ${{ matrix.cibw_python }}
127127
CIBW_ARCHS_MACOS: ${{ matrix.cibw_arch }}
128128

129-
- uses: actions/upload-artifact@v3
129+
- uses: actions/upload-artifact@v4
130130
with:
131131
name: wheels
132132
path: ./dist/*.whl
@@ -145,7 +145,7 @@ jobs:
145145
with:
146146
fetch-depth: 0
147147

148-
- uses: actions/setup-python@v4
148+
- uses: actions/setup-python@v5
149149
name: Install Python
150150
with:
151151
python-version: "3.9"
@@ -173,7 +173,7 @@ jobs:
173173
CIBW_BUILD: ${{ matrix.cibw_python }}
174174
CIBW_ARCHS_WINDOWS: ${{ matrix.cibw_arch }}
175175

176-
- uses: actions/upload-artifact@v3
176+
- uses: actions/upload-artifact@v4
177177
with:
178178
name: wheels
179179
path: ./dist/*.whl
@@ -194,7 +194,7 @@ jobs:
194194
with:
195195
fetch-depth: 0
196196

197-
- uses: actions/setup-python@v4
197+
- uses: actions/setup-python@v5
198198
name: Install Python
199199
with:
200200
python-version: "3.9"
@@ -204,7 +204,7 @@ jobs:
204204
python -m pip install --upgrade pip
205205
pip install twine
206206
pip install cython numpy build
207-
- uses: actions/download-artifact@v3
207+
- uses: actions/download-artifact@v4
208208
id: download
209209
with:
210210
name: wheels
@@ -224,7 +224,7 @@ jobs:
224224
TWINE_PASSWORD: ${{ secrets.TWINE_TOKEN }}
225225

226226
- name: Github release
227-
uses: softprops/action-gh-release@v1
227+
uses: softprops/action-gh-release@v2
228228
env:
229229
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
230230
GITHUB_REPOSITORY: ${{ github.repository }}

0 commit comments

Comments
 (0)