Skip to content

Commit 529d23a

Browse files
committed
Update repo URL, upgrade packages
1 parent 46c034d commit 529d23a

File tree

5 files changed

+6751
-1412
lines changed

5 files changed

+6751
-1412
lines changed

CONTRIBUTING.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ information to effectively respond to your bug report or contribution.
1111

1212
We welcome you to use the GitHub issue tracker to report bugs or suggest features.
1313

14-
When filing an issue, please check [existing open](https://github.com/aws/amazon-ecs-deploy-task-definition-for-github-actions/issues), or [recently closed](https://github.com/aws/amazon-ecs-deploy-task-definition-for-github-actions/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), issues to make sure somebody else hasn't already
14+
When filing an issue, please check [existing open](https://github.com/aws-actions/amazon-ecs-deploy-task-definition/issues), or [recently closed](https://github.com/aws-actions/amazon-ecs-deploy-task-definition/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), issues to make sure somebody else hasn't already
1515
reported the issue. Please try to include as much information as you can. Details like these are incredibly useful:
1616

1717
* A reproducible test case or series of steps
@@ -41,7 +41,7 @@ GitHub provides additional document on [forking a repository](https://help.githu
4141

4242

4343
## Finding contributions to work on
44-
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels (enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any ['help wanted'](https://github.com/aws/amazon-ecs-deploy-task-definition-for-github-actions/labels/help%20wanted) issues is a great place to start.
44+
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels (enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any ['help wanted'](https://github.com/aws-actions/amazon-ecs-deploy-task-definition/labels/help%20wanted) issues is a great place to start.
4545

4646

4747
## Code of Conduct
@@ -56,6 +56,6 @@ If you discover a potential security issue in this project we ask that you notif
5656

5757
## Licensing
5858

59-
See the [LICENSE](https://github.com/aws/amazon-ecs-deploy-task-definition-for-github-actions/blob/master/LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
59+
See the [LICENSE](https://github.com/aws-actions/amazon-ecs-deploy-task-definition/blob/master/LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.
6060

6161
We may ask you to sign a [Contributor License Agreement (CLA)](http://en.wikipedia.org/wiki/Contributor_License_Agreement) for larger changes.

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,20 @@ Registers an Amazon ECS task definition and deploys it to an ECS service.
66

77
```yaml
88
- name: Deploy to Amazon ECS
9-
uses: aws/amazon-ecs-deploy-task-definition-for-github-actions@master
9+
uses: aws-actions/amazon-ecs-deploy-task-definition@v1
1010
with:
1111
task-definition: task-definition.json
1212
service: my-service
1313
cluster: my-cluster
1414
wait-for-service-stability: true
1515
```
1616
17-
The action can be passed a `task-definition` generated dynamically via [the `aws/amazon-ecs-render-task-definition-for-github-actions` action](https://github.com/aws/amazon-ecs-render-task-definition-for-github-actions).
17+
The action can be passed a `task-definition` generated dynamically via [the `aws-actions/amazon-ecs-render-task-definition` action](https://github.com/aws-actions/amazon-ecs-render-task-definition).
1818

1919
## Credentials and Region
2020

2121
This action relies on the [default behavior of the AWS SDK for Javascript](https://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/setting-credentials-node.html) to determine AWS credentials and region.
22-
Use [the `aws/configure-aws-credentials-for-github-actions` action](https://github.com/aws/configure-aws-credentials-for-github-actions) to configure the GitHub Actions environment with environment variables containing AWS credentials and your desired region.
22+
Use [the `aws-actions/configure-aws-credentials` action](https://github.com/aws-actions/configure-aws-credentials) to configure the GitHub Actions environment with environment variables containing AWS credentials and your desired region.
2323

2424
We recommend following [Amazon IAM best practices](https://docs.aws.amazon.com/IAM/latest/UserGuide/best-practices.html) for the AWS credentials used in GitHub Actions workflows, including:
2525
* Do not store credentials in your repository's code. You may use [GitHub Actions secrets](https://help.github.com/en/github/automating-your-workflow-with-github-actions/virtual-environments-for-github-actions#creating-and-using-secrets-encrypted-variables) to store credentials and redact credentials from GitHub Actions workflow logs.

0 commit comments

Comments
 (0)