You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,9 @@
2
2
3
3
Configure AWS credential and region environment variables for use in other GitHub Actions. The environment variables will be detected by both the AWS SDKs and the AWS CLI to determine the credentials and region to use for AWS API calls.
4
4
5
+
## NOTICE: node12 deprecation warning
6
+
GitHub actions has recently started throwing warning messages regarding the deprecation of Node 12. If you would like to stop seeing this warning, configure your action to use `aws-actions/configure-aws-credentials@v1-node16`. Both the `v1` branch and the `v1-node16` branch will receive the same updates moving forward. See [this issue](https://github.com/aws-actions/configure-aws-credentials/issues/489) for more information on this topic.
@@ -1692,20 +1707,9 @@ function exportVariable(name, val) {
1692
1707
process.env[name]=convertedVal;
1693
1708
constfilePath=process.env['GITHUB_ENV']||'';
1694
1709
if(filePath){
1695
-
constdelimiter=`ghadelimiter_${uuid_1.v4()}`;
1696
-
// These should realistically never happen, but just in case someone finds a way to exploit uuid generation let's not allow keys or values that contain the delimiter.
1697
-
if(name.includes(delimiter)){
1698
-
thrownewError(`Unexpected input: name should not contain the delimiter "${delimiter}"`);
1699
-
}
1700
-
if(convertedVal.includes(delimiter)){
1701
-
thrownewError(`Unexpected input: value should not contain the delimiter "${delimiter}"`);
0 commit comments