Skip to content

Commit 9ebe9f5

Browse files
committed
Updated GitHub actions
1 parent e57b07f commit 9ebe9f5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/publish.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@v4
1818
- name: Set up Python
19-
uses: actions/setup-python@v4
19+
uses: actions/setup-python@v5
2020
with:
2121
python-version: 3.x
2222
- name: Install dependencies
2323
run: pip install build
2424
- name: Create packages
2525
run: python -m build
2626
- name: Archive packages
27-
uses: actions/upload-artifact@v3
27+
uses: actions/upload-artifact@v4
2828
with:
2929
name: dist
3030
path: dist
@@ -38,7 +38,7 @@ jobs:
3838
id-token: write
3939
steps:
4040
- name: Retrieve packages
41-
uses: actions/download-artifact@v3
41+
uses: actions/download-artifact@v4
4242
- name: Upload packages
4343
uses: pypa/gh-action-pypi-publish@release/v1
4444

.github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v4
1717
- name: Set up Python ${{ matrix.python-version }}
18-
uses: actions/setup-python@v4
18+
uses: actions/setup-python@v5
1919
with:
2020
python-version: ${{ matrix.python-version }}
21-
- uses: actions/cache@v3
21+
- uses: actions/cache@v4
2222
with:
2323
path: ~/.cache/pip
2424
key: pip-pyright
@@ -36,7 +36,7 @@ jobs:
3636
steps:
3737
- uses: actions/checkout@v4
3838
- name: Set up Python ${{ matrix.python-version }}
39-
uses: actions/setup-python@v4
39+
uses: actions/setup-python@v5
4040
with:
4141
python-version: ${{ matrix.python-version }}
4242
allow-prereleases: true

0 commit comments

Comments
 (0)