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
Merge branch 'master' into make_github_ref_env_var_optional
* master:
chore: Update dist
fix: Make tagging optional (#92)
chore: Bump eslint from 7.3.1 to 7.4.0 (#94)
chore: Update dist
chore: Bump aws-sdk from 2.707.0 to 2.708.0 (#90)
chore: update dependabot schedule (#89)
chore(release): 1.4.2
chore: Update dist
chore: Bump aws-sdk from 2.706.0 to 2.707.0 (#88)
chore: Switch to GitHub-native Dependabot
chore: Update dist
chore: Bump aws-sdk from 2.704.0 to 2.706.0
chore: Update dist
fix: add comma to set of special characters (#78)
chore: Bump jest from 26.0.1 to 26.1.0
chore: Update dist
chore: Bump aws-sdk from 2.692.0 to 2.704.0
chore: Bump eslint from 7.2.0 to 7.3.1
Copy file name to clipboardexpand all lines: CHANGELOG.md
+7
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,13 @@
2
2
3
3
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
* add comma to set of special characters ([#78](https://github.com/aws-actions/configure-aws-credentials/issues/78)) ([f04843b](https://github.com/aws-actions/configure-aws-credentials/commit/f04843b510a6c8adf77eed907a616cf00a99970d))
Copy file name to clipboardexpand all lines: README.md
+8
Original file line number
Diff line number
Diff line change
@@ -157,6 +157,14 @@ The session will have the name "GitHubActions" and be tagged with the following
157
157
158
158
_Note: all tag values must conform to [the requirements](https://docs.aws.amazon.com/STS/latest/APIReference/API_Tag.html). Particularly, `GITHUB_WORKFLOW` will be truncated if it's too long. If `GITHUB_ACTOR` or `GITHUB_WORKFLOW` contain invalid charcters, the characters will be replaced with an '*'._
159
159
160
+
The action will use session tagging by default during role assumption. You can skip this session tagging by providing `role-skip-session-tagging` as true in the action's inputs:
161
+
162
+
```yaml
163
+
uses: aws-actions/configure-aws-credentials@v1
164
+
with:
165
+
role-skip-session-tagging: true
166
+
```
167
+
160
168
## Self-Hosted Runners
161
169
162
170
If you run your GitHub Actions in a [self-hosted runner](https://help.github.com/en/actions/hosting-your-own-runners/about-self-hosted-runners) that already has access to AWS credentials, such as an EC2 instance, then you do not need to provide IAM user access key credentials to this action.
0 commit comments