Skip to content

Commit 5557dde

Browse files
chore: update GitHub Actions to resolve dependabot warnings
Updates outdated GitHub Actions to their latest versions: - actions/checkout v3 → v4 - pypa/cibuildwheel v2.11.1 → v2.21.3 - actions/upload-artifact v3 → v4 - actions/download-artifact v3 → v4 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 5170d7f commit 5557dde

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/build_and_publish.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
steps:
2828
- name: "Checkout code"
29-
uses: actions/checkout@v3
29+
uses: actions/checkout@v4
3030
with:
3131
fetch-depth: 1
3232
submodules: true
@@ -58,20 +58,20 @@ jobs:
5858

5959
steps:
6060
- name: "Checkout code"
61-
uses: actions/checkout@v3
61+
uses: actions/checkout@v4
6262
with:
6363
fetch-depth: 1
6464
submodules: true
6565

6666
- name: "Build wheel (${{ matrix.os }}, py${{ matrix.python-version }})"
67-
uses: pypa/cibuildwheel@v2.11.1
67+
uses: pypa/cibuildwheel@v2.21.3
6868
with:
6969
config-file: cibuildwheel.toml
7070
env:
7171
CIBW_BUILD: "cp${{ matrix.python-version}}-*"
7272

7373
- name: "Upload build artifacts (${{ matrix.os }}, py${{ matrix.python-version }})"
74-
uses: actions/upload-artifact@v3
74+
uses: actions/upload-artifact@v4
7575
with:
7676
name: dist
7777
path: ./wheelhouse/*.whl
@@ -83,7 +83,7 @@ jobs:
8383

8484
steps:
8585
- name: "Checkout code"
86-
uses: actions/checkout@v3
86+
uses: actions/checkout@v4
8787
with:
8888
fetch-depth: 1
8989
submodules: true
@@ -94,7 +94,7 @@ jobs:
9494
pipx run build --sdist
9595
9696
- name: "Upload build artifacts"
97-
uses: actions/upload-artifact@v3
97+
uses: actions/upload-artifact@v4
9898
with:
9999
name: "dist"
100100
path: "dist/*.tar.gz"
@@ -113,7 +113,7 @@ jobs:
113113

114114
steps:
115115
- name: "Download build artifacts"
116-
uses: actions/download-artifact@v3
116+
uses: actions/download-artifact@v4
117117
with:
118118
name: "dist"
119119
path: "dist"

0 commit comments

Comments
 (0)