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

build(deps): bump actions/upload-artifact from 3.1.2 to 4.1.0 #536

Closed
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
6 changes: 3 additions & 3 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Build
run: npm run build
- name: Upload build
uses: actions/upload-artifact@v3.1.2
uses: actions/upload-artifact@v4.1.0
with:
name: build
path: dist/*
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
mv screenshots/*.png screenshots/dist/$aw_server/$aw_version
- name: Upload screenshots
if: ${{ success() || steps.e2e.conclusion == 'failure'}}
uses: actions/upload-artifact@v3.1.2
uses: actions/upload-artifact@v4.1.0
with:
name: screenshots
path: screenshots/dist/*
Expand All @@ -161,7 +161,7 @@ jobs:
mv ~/.cache/activitywatch/log/*/*.log logs/dist/$aw_server/$aw_version
- name: Upload logs
if: ${{ always() }}
uses: actions/upload-artifact@v3.1.2
uses: actions/upload-artifact@v4.1.0
with:
name: logs
path: logs/dist/*
Loading