Skip to content

Commit

Permalink
chore(deps-gha): bump actions/upload-artifact from 3 to 4 (#77)
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
dependabot[bot] and tbouffard authored Dec 20, 2023
1 parent 735d073 commit 1cc0484
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/check-typescript-projects.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
working-directory: packages/core
run: npm pack
- name: Upload npm package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: maxgraph-npm-package
path: |
Expand All @@ -63,7 +63,7 @@ jobs:
- name: Download the maxgraph npm package
if: ${{ matrix.npm-package == 'development' }}
id: 'download'
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: maxgraph-npm-package
path: ${{github.workspace}}/../maxgraph-npm-package
Expand All @@ -84,7 +84,7 @@ jobs:
run: npm run build -w projects/_shared -w projects/${{matrix.project}}
- name: Upload project archive
if: ${{ matrix.npm-package == 'release' }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{matrix.project}}
path: ${{github.workspace}}/projects/${{matrix.project}}/dist
Expand All @@ -95,7 +95,7 @@ jobs:
needs: 'build_projects'
steps:
- name: Download all artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
path: tmp
- name: Display structure of downloaded files after removing maxgraph-npm-package
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
ls -lhR build
- name: Upload artifact not for GitHub Pages
if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch') != 'true'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: all-typescript-projects-${{github.sha}}
path: build
Expand Down

0 comments on commit 1cc0484

Please sign in to comment.