-
Notifications
You must be signed in to change notification settings - Fork 95
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
Upgrade actions to fix upload conflict #7426
Conversation
Signed-off-by: Young Bu Park <youngp@microsoft.com>
@@ -609,7 +609,7 @@ jobs: | |||
uses: actions/upload-artifact@v4 | |||
if: always() | |||
with: | |||
name: recipes-pod-logs | |||
name: ${{ matrix.name }}_recipes-pod-logs |
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.
From v4, upload artifact doesn't support append operation. We should have the explicit name for each test.
@@ -107,7 +107,7 @@ jobs: | |||
RAD_CLI_ARTIFACT_NAME: ${{ steps.gen-id.outputs.RAD_CLI_ARTIFACT_NAME }} | |||
steps: | |||
- name: Restore the latest cached binaries | |||
uses: actions/cache/restore@v3 | |||
uses: actions/cache/restore@v4 |
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.
This is the missing upgrade.
Per offline discussion with @youngbupark - this needs a force merge because the functional tests won't pass until it's in. |
Description
Upgrade actions to fix upload conflict
Type of change
Fixes: #issue_number