-
Notifications
You must be signed in to change notification settings - Fork 1
build(deps): bump actions/upload-artifact from 4 to 7 #98
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -53,7 +53,7 @@ jobs: | |
| run: pnpm --filter @hena-wadeena/web build | ||
|
|
||
| - name: Upload build artifact | ||
| uses: actions/upload-artifact@v4 | ||
| uses: actions/upload-artifact@v7 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🔴 upload-artifact bumped to v7 but download-artifact left at v4, breaking artifact transfer between jobs The Prompt for agentsWas this helpful? React with 👍 or 👎 to provide feedback. |
||
| with: | ||
| name: frontend-dist | ||
| path: apps/web/dist/ | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
P1:
upload-artifactis bumped to v7 butdownload-artifacton line 69 remains at v4. These companion actions should be version-aligned — bumpdownload-artifactto v7 as well to avoid artifact download failures in the deploy job.Prompt for AI agents