├── .github └── workflows │ └── test.yaml ├── .gitignore ├── .node-version ├── LICENSE ├── Makefile ├── README.md ├── action.yml ├── dist ├── LICENCE └── index.js ├── index.js └── package.json /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amancevice/aws-sts-assume-role/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .nyc_output/ 2 | coverage/ 3 | node_modules/ 4 | package-lock.json 5 | -------------------------------------------------------------------------------- /.node-version: -------------------------------------------------------------------------------- 1 | 20.11.1 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amancevice/aws-sts-assume-role/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amancevice/aws-sts-assume-role/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amancevice/aws-sts-assume-role/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amancevice/aws-sts-assume-role/HEAD/action.yml -------------------------------------------------------------------------------- /dist/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amancevice/aws-sts-assume-role/HEAD/dist/LICENCE -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amancevice/aws-sts-assume-role/HEAD/dist/index.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amancevice/aws-sts-assume-role/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amancevice/aws-sts-assume-role/HEAD/package.json --------------------------------------------------------------------------------