We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8f591b commit c81441fCopy full SHA for c81441f
.github/actions/repo-auth-client/action.yml
@@ -62,6 +62,9 @@ runs:
62
f"https://${{ inputs.domain }}/auth.php", session
63
)
64
65
+ # Mask the nonce in logs
66
+ print(f'::add-mask::{nonce}')
67
+
68
with open(os.getenv('GITHUB_OUTPUT'), 'a') as f:
69
f.write(f'nonce={nonce}\n')
70
except Exception as e:
@@ -106,6 +109,9 @@ runs:
106
109
f'https://${{ inputs.domain }}/?{urlencode({"verify": "${{ env.NONCE }}"})}', session
107
110
108
111
112
+ # Mask the token in logs
113
+ print(f'::add-mask::{token}')
114
115
116
f.write(f'token={token}\n')
117
0 commit comments