Skip to content

Commit 47c4725

Browse files
committed
fix: Github action deprecation of upload/download artifact
1 parent d533325 commit 47c4725

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build-master.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
cd ..
3232
3333
- name: "Upload artifact"
34-
uses: "actions/upload-artifact@v2"
34+
uses: "actions/upload-artifact@v4"
3535
with:
3636
name: pumptools-${{ github.sha }}
3737
retention-days: 30

.github/workflows/build-tag.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
cd ..
3333
3434
- name: "Upload artifact"
35-
uses: "actions/upload-artifact@v2"
35+
uses: "actions/upload-artifact@v4"
3636
with:
3737
name: pumptools-${{ github.sha }}
3838
retention-days: 30
@@ -46,7 +46,7 @@ jobs:
4646
steps:
4747
# This already extracts the contents of the artifact
4848
- name: "Download artifact"
49-
uses: "actions/download-artifact@v2"
49+
uses: "actions/download-artifact@v4"
5050
with:
5151
name: pumptools-${{ github.sha }}
5252

0 commit comments

Comments
 (0)