Skip to content

Commit 067262a

Browse files
authored
chore: upgrade GitHub Actions for Node 24 compatibility (#279)
Signed-off-by: Salman Muin Kayser Chishti <13schishti@gmail.com>
1 parent ee27d8a commit 067262a

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
python-version: ["3.13"]
1212

1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v6
1515

1616
- name: Install uv & set Python
1717
uses: astral-sh/setup-uv@v7

.github/workflows/release-please.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
extra-args: ""
5959
python-version: "3.13"
6060
steps:
61-
- uses: actions/checkout@v4
61+
- uses: actions/checkout@v6
6262

6363
- name: Install uv
6464
uses: astral-sh/setup-uv@v7
@@ -85,7 +85,7 @@ jobs:
8585
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: aarch64-linux-gnu-gcc
8686

8787
- name: Upload wheel artifact
88-
uses: actions/upload-artifact@v4
88+
uses: actions/upload-artifact@v6
8989
with:
9090
name: wheels-${{ matrix.label }}
9191
path: dist/*.whl
@@ -97,7 +97,7 @@ jobs:
9797
needs: release-please
9898
if: ${{ needs.release-please.outputs.releases_created == 'true' && needs.release-please.outputs.tag_name != '' }}
9999
steps:
100-
- uses: actions/checkout@v4
100+
- uses: actions/checkout@v6
101101

102102
- name: Install uv
103103
uses: astral-sh/setup-uv@v7
@@ -114,7 +114,7 @@ jobs:
114114
run: uvx maturin sdist --out dist
115115

116116
- name: Upload sdist artifact
117-
uses: actions/upload-artifact@v4
117+
uses: actions/upload-artifact@v6
118118
with:
119119
name: sdist
120120
path: dist/*.tar.gz
@@ -134,14 +134,14 @@ jobs:
134134
contents: write
135135
steps:
136136
- name: Download wheel artifacts
137-
uses: actions/download-artifact@v4
137+
uses: actions/download-artifact@v7
138138
with:
139139
pattern: wheels-*
140140
merge-multiple: true
141141
path: dist
142142

143143
- name: Download sdist artifact
144-
uses: actions/download-artifact@v4
144+
uses: actions/download-artifact@v7
145145
with:
146146
name: sdist
147147
path: dist

0 commit comments

Comments
 (0)