Skip to content

Commit e93752c

Browse files
authored
Merge pull request #47 from mike-oakley/u/mike/artifact-v4
chore: Update artifacts action to v4.
2 parents 1286321 + ab9b648 commit e93752c

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

Diff for: .github/workflows/publish.yml

+4-6
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ name: Publish
22

33
on:
44
workflow_dispatch:
5-
branches:
6-
- main
75
release:
86
types:
97
- published
@@ -23,11 +21,11 @@ jobs:
2321
uses: snok/install-poetry@v1
2422
with:
2523
virtualenvs-create: false
26-
version: 1.7.1
24+
version: 1.8.3
2725
- name: Build package distribution
2826
run: poetry build
2927
- name: Upload package artifact
30-
uses: actions/upload-artifact@v3
28+
uses: actions/upload-artifact@v4
3129
with:
3230
name: distribution
3331
path: dist
@@ -43,7 +41,7 @@ jobs:
4341
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
4442
steps:
4543
- name: Download package distribution
46-
uses: actions/download-artifact@v3
44+
uses: actions/download-artifact@v4
4745
with:
4846
name: distribution
4947
path: dist
@@ -63,7 +61,7 @@ jobs:
6361
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
6462
steps:
6563
- name: Download package distribution
66-
uses: actions/download-artifact@v3
64+
uses: actions/download-artifact@v4
6765
with:
6866
name: distribution
6967
path: dist

0 commit comments

Comments
 (0)