Skip to content

Commit 76a84bb

Browse files
committed
ci: Use download/upload artifact v4
1 parent 25b827b commit 76a84bb

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
env:
2121
COMPOSER_CACHE_DIR: /tmp/composer-cache
2222
- name: archive production artifacts
23-
uses: actions/upload-artifact@v3
23+
uses: actions/upload-artifact@v4
2424
with:
2525
name: deployment-build
2626
path: build/build.tgz

.github/workflows/deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
steps:
2424
- uses: actions/checkout@v3
2525
- name: download build artifact
26-
uses: actions/download-artifact@v3
26+
uses: actions/download-artifact@v4
2727
with:
2828
name: deployment-build
2929
path: build/

.github/workflows/deploy_staging.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
steps:
2323
- uses: actions/checkout@v3
2424
- name: download build artifact
25-
uses: actions/download-artifact@v3
25+
uses: actions/download-artifact@v4
2626
with:
2727
name: deployment-build
2828
path: build/

.github/workflows/deploy_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@v3
2121
- name: download build artifact
22-
uses: actions/download-artifact@v3
22+
uses: actions/download-artifact@v4
2323
with:
2424
name: deployment-build
2525
path: build/

0 commit comments

Comments
 (0)