Skip to content

Commit 688c588

Browse files
authored
update actions to latest versions (#9)
1 parent 3b18c87 commit 688c588

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/python-publish.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
python-version: ['3.10', '3.11']
1616
steps:
1717
- name: Check out repository
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v3
1919
- name: Set up Python ${{ matrix.python-version }}
2020
id: setup-python
21-
uses: actions/setup-python@v2
21+
uses: actions/setup-python@v4
2222
with:
2323
python-version: ${{ matrix.python-version }}
2424
- name: Load cached Poetry installation
@@ -47,7 +47,7 @@ jobs:
4747
- name: Build package
4848
run: poetry build
4949
- name: Upload artifacts
50-
uses: actions/upload-artifact@v2
50+
uses: actions/upload-artifact@v3
5151
with:
5252
name: dist-${{ matrix.python-version }}
5353
path: dist
@@ -63,13 +63,13 @@ jobs:
6363
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
6464
steps:
6565
- name: Download artifacts
66-
uses: actions/download-artifact@v2
66+
uses: actions/download-artifact@v3
6767
with:
6868
name: dist-3.10
6969
path: dist
7070

7171
- name: Download artifacts
72-
uses: actions/download-artifact@v2
72+
uses: actions/download-artifact@v3
7373
with:
7474
name: dist-3.11
7575
path: dist

0 commit comments

Comments
 (0)