Skip to content

Commit ceed82e

Browse files
author
Erick Friis
authored
infra: use artifact v4 in release pipeline (#8)
1 parent f216d60 commit ceed82e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/_release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
working-directory: ${{ inputs.working-directory }}
5555

5656
- name: Upload build
57-
uses: actions/upload-artifact@v3
57+
uses: actions/upload-artifact@v4
5858
with:
5959
name: dist
6060
path: ${{ inputs.working-directory }}/dist/
@@ -210,7 +210,7 @@ jobs:
210210
working-directory: ${{ inputs.working-directory }}
211211
cache-key: release
212212

213-
- uses: actions/download-artifact@v3
213+
- uses: actions/download-artifact@v4
214214
with:
215215
name: dist
216216
path: ${{ inputs.working-directory }}/dist/
@@ -249,7 +249,7 @@ jobs:
249249
python-version: ${{ env.PYTHON_VERSION }}
250250
poetry-version: ${{ env.POETRY_VERSION }}
251251
working-directory: ${{ inputs.working-directory }}
252-
cache-key: release
252+
cache-key: releaseartifact@v4
253253

254254
- uses: actions/download-artifact@v3
255255
with:

.github/workflows/_test_release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
working-directory: ${{ inputs.working-directory }}
4949

5050
- name: Upload build
51-
uses: actions/upload-artifact@v3
51+
uses: actions/upload-artifact@v4
5252
with:
5353
name: test-dist
5454
path: ${{ inputs.working-directory }}/dist/
@@ -76,7 +76,7 @@ jobs:
7676
steps:
7777
- uses: actions/checkout@v4
7878

79-
- uses: actions/download-artifact@v3
79+
- uses: actions/download-artifact@v4
8080
with:
8181
name: test-dist
8282
path: ${{ inputs.working-directory }}/dist/

0 commit comments

Comments
 (0)