Skip to content

Commit 754e619

Browse files
committed
Update GitHub Actions to Node 24
1 parent 9f50e74 commit 754e619

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
name: Test (Python ${{ matrix.python-version }}, ${{ matrix.os }})
1919

2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v6
2222

2323
- name: Install uv
24-
uses: astral-sh/setup-uv@v4
24+
uses: astral-sh/setup-uv@v8.1.0
2525

2626
- name: Set up Python ${{ matrix.python-version }}
2727
run: uv python install ${{ matrix.python-version }}

.github/workflows/e2e.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
python-version: ["3.13", "3.14"]
1818

1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v6
2121

2222
- name: Install uv
23-
uses: astral-sh/setup-uv@v4
23+
uses: astral-sh/setup-uv@v8.1.0
2424

2525
- name: Set up Python ${{ matrix.python-version }}
2626
run: uv python install ${{ matrix.python-version }}
@@ -48,7 +48,7 @@ jobs:
4848
4949
- name: Upload E2E logs and cache artifacts
5050
if: always()
51-
uses: actions/upload-artifact@v4
51+
uses: actions/upload-artifact@v7
5252
with:
5353
name: e2e-python-${{ matrix.python-version }}
5454
path: |

.github/workflows/release.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
timeout-minutes: 15
1717

1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v6
2020

2121
- name: Install uv
22-
uses: astral-sh/setup-uv@v4
22+
uses: astral-sh/setup-uv@v8.1.0
2323

2424
- name: Set up Python 3.13
2525
run: uv python install 3.13
@@ -66,7 +66,7 @@ jobs:
6666
"
6767
6868
- name: Upload dist artifacts
69-
uses: actions/upload-artifact@v4
69+
uses: actions/upload-artifact@v7
7070
with:
7171
name: dist
7272
path: dist/
@@ -84,13 +84,13 @@ jobs:
8484

8585
steps:
8686
- name: Download dist artifacts
87-
uses: actions/download-artifact@v4
87+
uses: actions/download-artifact@v8
8888
with:
8989
name: dist
9090
path: dist/
9191

9292
- name: Generate artifact attestation
93-
uses: actions/attest-build-provenance@v2
93+
uses: actions/attest-build-provenance@v4
9494
with:
9595
subject-path: 'dist/*'
9696

@@ -107,13 +107,13 @@ jobs:
107107

108108
steps:
109109
- name: Download dist artifacts
110-
uses: actions/download-artifact@v4
110+
uses: actions/download-artifact@v8
111111
with:
112112
name: dist
113113
path: dist/
114114

115115
- name: Create GitHub Release
116-
uses: softprops/action-gh-release@v2
116+
uses: softprops/action-gh-release@v3
117117
with:
118118
files: dist/*
119119
generate_release_notes: true

0 commit comments

Comments
 (0)