-
-
Notifications
You must be signed in to change notification settings - Fork 329
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: remove the deprecated runner_user_data output variable #1032
fix: remove the deprecated runner_user_data output variable #1032
Conversation
Hey @ryancausey! 👋 Thank you for your contribution to the project. Please refer to the contribution rules for a quick overview of the process. Make sure that this PR clearly explains:
With submitting this PR you confirm that you hold the rights of the code added and agree that it will published under this LICENSE. The following ChatOps commands are supported:
Simply add a comment with the command in the first line. If you need to pass more information, separate it with a blank line from the command. This message was generated automatically. You are welcome to improve it. |
32f78ad
to
16325a8
Compare
As this variable is already deprecated and used for debugging only, we should simply delete it (like in #1019). Users can set |
5601972
to
157f354
Compare
BREAKING CHANGE: This removes the deprecated runner_user_data output variable. Use var.debug.write_runner_user_data_to_file instead.
157f354
to
109626d
Compare
Thanks for improving the module, @ryancausey |
🤖 I have created a release *beep* *boop* --- ## [7.2.2](7.2.1...7.2.2) (2023-11-14) ### Bug Fixes * remove the deprecated runner_user_data output variable ([#1032](#1032)) ([4e22a6c](4e22a6c)) * retry the jq installation in case of errors ([#1033](#1033)) ([1ab5690](1ab5690)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --------- Signed-off-by: Niek Palm <dev.npalm@gmail.com> Co-authored-by: cattle-ops-releaser-2[bot] <134548870+cattle-ops-releaser-2[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Description
Depending on the value of the output a call to
nonsensitive
is needed. Instead of introducing a conditional call, we remove the output variable. The value is still written to a local file, seedebug.write_runner_user_data_to_file
.Closes #1031.
Migrations required
YES - any use of the
runner-user-data
output must be changed to usevar.debug.write_runner_user_data_to_file
. As this is used for debug only, it shouldn't be a problem for your live environment.Verification
None. Just removing the output variable.