Skip to content

Commit

Permalink
feat(protocol-designer): yaml upload and download artifact version to…
Browse files Browse the repository at this point in the history
… 4 (#17229)

github actions upload-artifact and download-artifact v3 was deprecated
so this updates to v4.
  • Loading branch information
jerader authored Jan 9, 2025
1 parent 6db70ab commit d3b1b9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pd-test-build-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ jobs:
run: |
make -C protocol-designer NODE_ENV=development
- name: 'upload github artifact'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: 'pd-artifact'
path: protocol-designer/dist
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:
const { buildComplexEnvVars } = require(`${process.env.GITHUB_WORKSPACE}/.github/workflows/utils.js`)
buildComplexEnvVars(core, context)
- name: 'download PD build'
uses: 'actions/download-artifact@v3'
uses: 'actions/download-artifact@v4'
with:
name: pd-artifact
path: ./dist
Expand Down

0 comments on commit d3b1b9c

Please sign in to comment.