-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Fix duplicate workflow step ids #9934
Conversation
Follow-up to 7d60c27.
@@ -44,7 +44,7 @@ jobs: | |||
|
|||
# Create a re-usable virtual environment | |||
- name: Restore Python virtual environment cache | |||
id: cache-venv | |||
id: cache-venv-restore |
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.
Should conditionals with the old ID be updated too?
if: steps.cache-venv.outputs.cache-hit != 'true'
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.
Good catch. Realized I can probably just delete the new id's I accidentally introduced.
Follow-up to 7d60c27.
As always, a little bit of iterating with actions. ;)