-
Notifications
You must be signed in to change notification settings - Fork 5
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
Remove deprecation warnings from Github Actions #959
Conversation
echo "::set-output name=tag::${GITHUB_REF#refs/*/}" | ||
echo "::set-output name=revision::$(git rev-parse --short HEAD)" | ||
echo "tag=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT | ||
echo "revision=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT |
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.
Are we missing something? I'm still seeing some set-output
warnings in the CI: https://github.com/trisacrypto/directory/actions/runs/3680285547
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.
It looks like those deprecation warnings are bubbling up from some of our dependencies; once they have updated their actions as we have done in this PR, they should hopefully all go away. It might require us to update some of the action versions pinned in our yaml files.
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.
LGTM!
…ns published on the marketplace
…ry into deprecation-warnings
Scope of changes
This PR attempts to address the deprecation warnings related to the set-output workflow in Github Actions, which I believe Ensign is using to determine the commit and branch is being shown in the front end. I've used the instructions posted by Github here. Fixes SC-10218
Type of change
Acceptance criteria
If this works, the deprecations warnings in Github Actions should go away (at least the ones related to
set-output
😄 )Author checklist
Reviewer(s) checklist