Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps-gha): bump actions/upload-artifact from 3 to 4 #77

Merged
merged 2 commits into from
Dec 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading