Skip to content

Commit 20bb43b

Browse files
chore(gha): bump actions/upload-artifact from 3 to 4 (#583)
The artifact infrastructure has changed. So, we must bump `action/download-artifact` from 3 to 4 at the same time. --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Thomas Bouffard <[email protected]>
1 parent 48d047c commit 20bb43b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/check-projects.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Build npm package
3030
run: npm pack
3131
- name: Upload npm package
32-
uses: actions/upload-artifact@v3
32+
uses: actions/upload-artifact@v4
3333
with:
3434
name: bpmn-visualization-npm-package
3535
path: bpmn-visualization-*.tgz
@@ -59,7 +59,7 @@ jobs:
5959
- name: Download the bpmn-visualization development npm package
6060
if: ${{ matrix.bv-npm-package == 'development' }}
6161
id: 'download'
62-
uses: actions/download-artifact@v3
62+
uses: actions/download-artifact@v4
6363
with:
6464
name: bpmn-visualization-npm-package
6565
path: ${{github.workspace}}/../bpmn-visualization-npm-package
@@ -78,7 +78,7 @@ jobs:
7878
run: npm run build
7979
- name: Upload project archive
8080
if: github.event_name == 'pull_request'
81-
uses: actions/upload-artifact@v3
81+
uses: actions/upload-artifact@v4
8282
with:
8383
name: ${{matrix.project}}-${{matrix.bv-npm-package}}
8484
path: ${{github.workspace}}/projects/${{matrix.project}}/dist
@@ -95,7 +95,7 @@ jobs:
9595
pull-requests: write # surge-preview: PR comments
9696
steps:
9797
- name: Download all artifacts
98-
uses: actions/download-artifact@v3
98+
uses: actions/download-artifact@v4
9999
with:
100100
path: tmp
101101
- name: Display structure of downloaded files
@@ -182,7 +182,7 @@ jobs:
182182
# Fallback when it is not possible to deploy to surge.sh
183183
- name: Upload artifact (preview not deployed)
184184
if: steps.surge-preview-tools.outputs.can-run-surge-command == 'false'
185-
uses: actions/upload-artifact@v3
185+
uses: actions/upload-artifact@v4
186186
with:
187187
name: bpmn-visualization-examples-projects-${{github.sha}}
188188
path: build

0 commit comments

Comments
 (0)