Skip to content

Commit d3b1b9c

Browse files
authored
feat(protocol-designer): yaml upload and download artifact version to 4 (#17229)
github actions upload-artifact and download-artifact v3 was deprecated so this updates to v4.
1 parent 6db70ab commit d3b1b9c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/pd-test-build-deploy.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ jobs:
164164
run: |
165165
make -C protocol-designer NODE_ENV=development
166166
- name: 'upload github artifact'
167-
uses: actions/upload-artifact@v3
167+
uses: actions/upload-artifact@v4
168168
with:
169169
name: 'pd-artifact'
170170
path: protocol-designer/dist
@@ -197,7 +197,7 @@ jobs:
197197
const { buildComplexEnvVars } = require(`${process.env.GITHUB_WORKSPACE}/.github/workflows/utils.js`)
198198
buildComplexEnvVars(core, context)
199199
- name: 'download PD build'
200-
uses: 'actions/download-artifact@v3'
200+
uses: 'actions/download-artifact@v4'
201201
with:
202202
name: pd-artifact
203203
path: ./dist

0 commit comments

Comments
 (0)