2 Commits

Author SHA1 Message Date
dependabot[bot]
2097eb9806 Bump minimist from 1.2.5 to 1.2.8
Bumps [minimist](https://github.com/minimistjs/minimist) from 1.2.5 to 1.2.8.
- [Release notes](https://github.com/minimistjs/minimist/releases)
- [Changelog](https://github.com/minimistjs/minimist/blob/main/CHANGELOG.md)
- [Commits](https://github.com/minimistjs/minimist/compare/v1.2.5...v1.2.8)

---
updated-dependencies:
- dependency-name: minimist
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-03-08 08:08:17 +00:00
Dan Molik
1b18c184b7 need parens? 2022-10-13 17:34:26 -04:00
5 changed files with 15 additions and 932 deletions

View File

@@ -2587,7 +2587,7 @@ function getInputS3ClientConfig() {
}
} : {
credentials: credential_provider_web_identity_1.fromTokenFile({
roleAssumerWithWebIdentity: client_sts_1.getDefaultRoleAssumerWithWebIdentity,
roleAssumerWithWebIdentity: client_sts_1.getDefaultRoleAssumerWithWebIdentity(),
})
};
const s3config = Object.assign(Object.assign({}, credentials), { region: core.getInput(constants_1.Inputs.AWSRegion), endpoint: core.getInput(constants_1.Inputs.AWSEndpoint), bucketEndpoint: core.getBooleanInput(constants_1.Inputs.AWSS3BucketEndpoint), forcePathStyle: core.getBooleanInput(constants_1.Inputs.AWSS3ForcePathStyle) });

2
dist/save/index.js vendored
View File

@@ -2587,7 +2587,7 @@ function getInputS3ClientConfig() {
}
} : {
credentials: credential_provider_web_identity_1.fromTokenFile({
roleAssumerWithWebIdentity: client_sts_1.getDefaultRoleAssumerWithWebIdentity,
roleAssumerWithWebIdentity: client_sts_1.getDefaultRoleAssumerWithWebIdentity(),
})
};
const s3config = Object.assign(Object.assign({}, credentials), { region: core.getInput(constants_1.Inputs.AWSRegion), endpoint: core.getInput(constants_1.Inputs.AWSEndpoint), bucketEndpoint: core.getBooleanInput(constants_1.Inputs.AWSS3BucketEndpoint), forcePathStyle: core.getBooleanInput(constants_1.Inputs.AWSS3ForcePathStyle) });

939
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{
"name": "actions-s3-caching",
"version": "1.0.3",
"version": "1.0.5",
"private": true,
"description": "Cache dependencies and build outputs",
"main": "dist/restore/index.js",

View File

@@ -90,7 +90,7 @@ export function getInputS3ClientConfig(): S3ClientConfig | undefined {
}
} : {
credentials: fromTokenFile({
roleAssumerWithWebIdentity: getDefaultRoleAssumerWithWebIdentity,
roleAssumerWithWebIdentity: getDefaultRoleAssumerWithWebIdentity(),
})
}