Skip to content

Commit b11c1be

Browse files
committed
ci: bump GitHub Actions to latest major versions
1 parent 6e522fd commit b11c1be

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-latest
2929
steps:
3030
- name: Checkout
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v6
3232
with:
3333
ref: main
3434

@@ -46,13 +46,13 @@ jobs:
4646
git push origin main
4747
4848
- name: Setup Node
49-
uses: actions/setup-node@v4
49+
uses: actions/setup-node@v6
5050
with:
5151
node-version: 20
5252
cache: 'npm'
5353

5454
- name: Setup Python
55-
uses: actions/setup-python@v5
55+
uses: actions/setup-python@v6
5656
with:
5757
python-version: '3.11'
5858

.github/workflows/publish-pypi.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v6
2828

2929
- name: Update version from release tag
3030
if: github.event_name == 'release'
@@ -35,13 +35,13 @@ jobs:
3535
sed -i "s/^version = \".*\"/version = \"$VERSION\"/" pyproject.toml
3636
3737
- name: Setup Node
38-
uses: actions/setup-node@v4
38+
uses: actions/setup-node@v6
3939
with:
4040
node-version: 20
4141
cache: 'npm'
4242

4343
- name: Setup Python
44-
uses: actions/setup-python@v5
44+
uses: actions/setup-python@v6
4545
with:
4646
python-version: '3.11'
4747

@@ -76,7 +76,7 @@ jobs:
7676
uses: pypa/gh-action-pypi-publish@release/v1
7777

7878
- name: Upload build artifacts
79-
uses: actions/upload-artifact@v4
79+
uses: actions/upload-artifact@v7
8080
with:
8181
name: dist
8282
path: dist/

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
python-version: ["3.11", "3.12"]
1616

1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v6
1919

2020
- name: Set up Python ${{ matrix.python-version }}
21-
uses: actions/setup-python@v5
21+
uses: actions/setup-python@v6
2222
with:
2323
python-version: ${{ matrix.python-version }}
2424

0 commit comments

Comments
 (0)